From 49b0ec0ff25e001cb2c3001f6c9497c9ade01027 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 26 Sep 2016 03:01:13 +0200 Subject: [PATCH] Prep for release --- src/dorkbox/systemTray/SystemTray.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/dorkbox/systemTray/SystemTray.java b/src/dorkbox/systemTray/SystemTray.java index 22a937a..d25a88b 100644 --- a/src/dorkbox/systemTray/SystemTray.java +++ b/src/dorkbox/systemTray/SystemTray.java @@ -102,7 +102,11 @@ class SystemTray { public static boolean FORCE_GTK2 = false; @Property - /** Forces the system tray detection to be Automatic (0), GTK (1), AppIndicator (2), or Swing (3). This is an advanced feature. */ + /** + * Forces the system tray detection to be Automatic (0), GtkStatusIcon (1), AppIndicator (2), or Swing (3). + *

+ * This is an advanced feature, and it is recommended to leave at 0. + */ public static int FORCE_TRAY_TYPE = 0; @Property @@ -116,7 +120,7 @@ class SystemTray { /** * This property is provided for debugging any errors in the logic used to determine the system-tray type. */ - public static boolean DEBUG = true; + public static boolean DEBUG = false; private static volatile SystemTray systemTray = null;