Added colour for tag errors

This commit is contained in:
Veronica K. B. Olsen
2019-05-30 22:09:08 +02:00
parent ce96ac9961
commit f719266846
4 changed files with 7 additions and 3 deletions
+2
View File
@@ -37,6 +37,7 @@ class Theme:
self.colKey = [0,0,0]
self.colVal = [0,0,0]
self.colSpell = [0,0,0]
self.colTagErr = [0,0,0]
# Changeable Settings
self.guiTheme = None
@@ -94,6 +95,7 @@ class Theme:
self.colKey = self._loadColour(confParser,cnfSec,"keyword")
self.colVal = self._loadColour(confParser,cnfSec,"value")
self.colSpell = self._loadColour(confParser,cnfSec,"spellcheckline")
self.colTagErr = self._loadColour(confParser,cnfSec,"tagerror")
return True