Added a set of simple icons for dark theme

This commit is contained in:
Veronica K. B. Olsen
2019-10-06 20:44:24 +02:00
parent 10bd5049bc
commit 8fc3de2a3d
13 changed files with 26 additions and 18 deletions
+8
View File
@@ -143,6 +143,14 @@ class Theme:
logger.error("Could not load theme css file")
return False
# Icon Files
iconsDir = path.join(self.themePath,self.iconPath)
if path.isdir(iconsDir):
for iconName in self.ICON_MAP:
iconFile = path.join(iconsDir,iconName+".png")
if path.isfile(iconFile):
self.themeIcons[iconName] = QIcon(iconFile)
# Config File
confParser = configparser.ConfigParser()
try: