1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
From: Scott Howard <showard@debian.org>
Date: Wed, 28 Mar 2018 15:52:22 -0300
Subject: Remove MacOS think_different handling
Forwarded: not-needed
---
app/src/processing/app/Base.java | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java
index 9fa5603..411db1a 100644
--- a/app/src/processing/app/Base.java
+++ b/app/src/processing/app/Base.java
@@ -53,7 +53,6 @@ import processing.app.helpers.filefilters.OnlyDirs;
import processing.app.helpers.filefilters.OnlyFilesWithExtension;
import processing.app.javax.swing.filechooser.FileNameExtensionFilter;
import processing.app.legacy.PApplet;
-import processing.app.macosx.ThinkDifferent;
import processing.app.packages.LibraryList;
import processing.app.packages.UserLibrary;
import processing.app.packages.UserLibraryFolder.Location;
@@ -138,14 +137,6 @@ public class Base {
}
System.setProperty("java.net.useSystemProxies", "true");
- if (OSUtils.isMacOS()) {
- System.setProperty("apple.laf.useScreenMenuBar",
- String.valueOf(!System.getProperty("os.version").startsWith("10.13")
- || isMacOsAboutMenuItemPresent()));
-
- ThinkDifferent.init();
- }
-
try {
INSTANCE = new Base(args);
} catch (Throwable e) {
|