eric6/Toolbox/Startup.py

changeset 7499
be7e8f2cb5d4
parent 7493
1696e91a5393
child 7512
170e64742ae7
--- a/eric6/Toolbox/Startup.py	Sat Apr 04 18:52:26 2020 +0200
+++ b/eric6/Toolbox/Startup.py	Sat Apr 04 19:02:32 2020 +0200
@@ -123,19 +123,24 @@
     """
     import Preferences
     
+    # TODO: make default icon set configurable
+    #   - automatic (w.r.t. lightness)
+    #   - breeze-light
+    #   - breeze-dark
+    #   - oxygen (formerly default)
     if application.usesDarkPalette():
         # dark desktop
         iconPath = "breeze-dark"
     else:
         # light desktop
-        iconPath = "breeze"
+        iconPath = "breeze-light"
     defaultIconPaths = [
         # add paths for vector graphics
         os.path.join(getConfig('ericIconDir'), iconPath),
         os.path.join(getConfig('ericIconDir'), iconPath, "languages"),
         # add old default pixel icons
-        os.path.join(getConfig('ericIconDir'), "default"),
-        os.path.join(getConfig('ericIconDir'), "default", "languages"),
+##        os.path.join(getConfig('ericIconDir'), "default"),
+##        os.path.join(getConfig('ericIconDir'), "default", "languages"),
     ]
     iconPaths = Preferences.getIcons("Path")
     for iconPath in iconPaths:

eric ide

mercurial