We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Changing the Font and the Color in a FontDialog on Mac leads to CCE
To Reproduce Use this snippet to test, or just change a font and font color in Eclipse.
import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.FontDialog; import org.eclipse.swt.widgets.Shell; public class MacFontDialogError { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); FontDialog dialog = new FontDialog(shell); dialog.open(); display.dispose(); } }
Display
FontDialog
ColorDialog
Expected behavior Should not cause CCE.
Environment:
Additional OS info (e.g. OS version, Linux Desktop, etc) macOS Sonoma and Sequoia
JRE/JDK version JDK 17 or 21, doesn't matter.
Version since Probably a long time.
The text was updated successfully, but these errors were encountered:
Fix ClassCastException on Mac FontDialog
9874203
- See eclipse-platform#1814
[Mac] Fix ClassCastException when selecting a color in FontDialog
d06d41b
7429064
c94f156
No branches or pull requests
Describe the bug
Changing the Font and the Color in a FontDialog on Mac leads to CCE
To Reproduce
Use this snippet to test, or just change a font and font color in Eclipse.
Display
class at line 5991 - in this case it's aFontDialog
not aColorDialog
.Expected behavior
Should not cause CCE.
Environment:
Additional OS info (e.g. OS version, Linux Desktop, etc)
macOS Sonoma and Sequoia
JRE/JDK version
JDK 17 or 21, doesn't matter.
Version since
Probably a long time.
The text was updated successfully, but these errors were encountered: