Moved graphics and themes folders to assets

This commit is contained in:
Veronica K. B. Olsen
2019-11-08 13:40:07 +01:00
parent a7da476c9e
commit 2c4c711a43
31 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -172,8 +172,8 @@ class Config:
self.appPath = getattr(sys, "_MEIPASS", path.abspath(path.dirname(__file__)))
self.appRoot = path.join(self.appPath,path.pardir)
self.assetPath = path.join(self.appPath,"assets")
self.themeRoot = path.join(self.appPath,"themes")
self.graphPath = path.join(self.appPath,"graphics")
self.themeRoot = path.join(self.assetPath,"themes")
self.graphPath = path.join(self.assetPath,"graphics")
self.dictPath = path.join(self.assetPath,"dict")
self.appIcon = path.join(self.graphPath, nwFiles.APP_ICON)