Merge and update the default themes

This commit is contained in:
Veronica Berglyd Olsen
2025-06-02 18:40:58 +02:00
parent 04526385d1
commit 072d0f0acd
5 changed files with 113 additions and 153 deletions
+1 -1
View File
@@ -244,7 +244,7 @@ class GuiTheme:
entries = len(data)
if entries == 2:
# Assume name, alpha
color = self._qColors.get(data[0].strip(), default)
color = QColor(self._qColors.get(data[0].strip(), default))
color.setAlpha(checkInt(data[1], 255))
return color
else: