141 @param application reference to the application object |
140 @param application reference to the application object |
142 @type E5Application |
141 @type E5Application |
143 @return list of default icon paths |
142 @return list of default icon paths |
144 @rtype list of str |
143 @rtype list of str |
145 """ |
144 """ |
|
145 import Preferences |
|
146 |
146 defaultIconsPath = Preferences.getIcons("DefaultIconsPath") |
147 defaultIconsPath = Preferences.getIcons("DefaultIconsPath") |
147 if defaultIconsPath == "automatic": |
148 if defaultIconsPath == "automatic": |
148 if application.usesDarkPalette(): |
149 if application.usesDarkPalette(): |
149 # dark desktop |
150 # dark desktop |
150 defaultIconsPath = "breeze-dark" |
151 defaultIconsPath = "breeze-dark" |