-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for Mac drawing bug issue 1012 part 2 #1232
Fix for Mac drawing bug issue 1012 part 2 #1232
Conversation
- OS.objc_msgSend(id, OS.sel_setClipsToBounds_, true) needs to be applied in two more cases - See eclipse-platform#1012
This applies the fix in two more places in the However, I wonder if we are playing whack-a-mole with this and the real fix is to call public NSView(long id) {
super(id);
OS.objc_msgSend(id, OS.sel_setClipsToBounds_, true);
} But as explained in #1081 (comment) we can't add it there. @lshanmug WDYT? |
Actually, can someone merge this so we can get it in for 4.32? Without this fix, users are still going to see blank areas on Mac when using a JDK linked to Mac SDK 14. Perhaps we can look at implementing it in |
@Phillipus Ideally the call to |
@lshanmug Thanks for your feedback and the merge! |
@Phillipus Thanks for the fix! I'm also thinking how to address the issue, will take a look next week and update. |
OS.objc_msgSend(id, OS.sel_setClipsToBounds_, true) needs to be applied in two more cases
See MacOS 14.3 M2: RCP application blank screen with Temurin 17.0.10 #1012