Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
index 7f996ebb9f..cebdfb432a 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
@@ -111,6 +111,8 @@ public class Display extends Device {
Dark, Light,
}
APPEARANCE appAppearance;
+ /* System property to be set for SWT application to use the system's theme */
+ static final String USE_SYSTEM_THEME = "org.eclipse.swt.display.useSystemTheme";
/* Windows and Events */
Event [] eventQueue;
@@ -2225,8 +2227,10 @@ boolean hasDefaultButton () {
protected void init () {
super.init ();
- if (OS.isSystemDarkAppearance()) {
- setAppAppearance(APPEARANCE.Dark);
+ if ("true".equalsIgnoreCase(System.getProperty(USE_SYSTEM_THEME))) {
+ if (OS.isSystemDarkAppearance()) {
+ setAppAppearance(APPEARANCE.Dark);
+ }
}
initClasses ();

Back to the top