--- 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: