We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5930a95 commit 90d308dCopy full SHA for 90d308d
main.py
@@ -23,7 +23,7 @@ def __init__(self):
23
24
create_json()
25
26
- with open(f'{get_theme()}.qss') as qss:
+ with open(f'style/{get_theme()}.qss') as qss:
27
self.setStyleSheet(qss.read())
28
29
self.add_game.clicked.connect(self.open_dialog)
@@ -37,7 +37,7 @@ def __init__(self):
37
self.action_3.triggered.connect(lambda: self.set_theme("dark"))
38
39
def set_theme(self, theme):
40
- with open(f'{theme}.qss') as qss:
+ with open(f'style/{theme}.qss') as qss:
41
42
update_setting("theme", theme)
43
dark.qss renamed to style/dark.qss
light.qss renamed to style/light.qss
0 commit comments