File tree 2 files changed +2
-3
lines changed
arduino-core/src/processing/app/linux
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 37
37
*/
38
38
public class Platform extends processing .app .Platform {
39
39
40
- // TODO Need to be smarter here since KDE people ain't gonna like that GTK.
41
- // It may even throw a weird exception at 'em for their trouble.
42
40
@ Override
43
41
public void setLookAndFeel () throws Exception {
42
+ super .setLookAndFeel ();
44
43
GTKLookAndFeelFixer .installGtkPopupBugWorkaround ();
45
44
}
46
45
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ if [ -x "$APPDIR/java/bin/java" ]; then
25
25
fi
26
26
27
27
# Collect options to java in an array, to properly handle whitespace in options
28
- JAVA_OPTIONS=(" -DAPP_DIR=$APPDIR " " -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel " )
28
+ JAVA_OPTIONS=(" -DAPP_DIR=$APPDIR " )
29
29
30
30
# Only show the splash screen when no options are present
31
31
if [[ " $@ " != * " --" * ]] ; then
You can’t perform that action at this time.
0 commit comments