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 50eb931 commit 2a62aecCopy full SHA for 2a62aec
configure.py
@@ -456,9 +456,9 @@ def on_weatherping_click(self):
456
self.more_config_window.show()
457
458
def on_open_theme_folder_click(self):
459
- path = f'"{MAIN_DIRECTORY}res/themes"'
+ path = f'{MAIN_DIRECTORY}res/themes'
460
if platform.system() == "Windows":
461
- os.startfile(path)
+ os.startfile(f'"{path}"')
462
elif platform.system() == "Darwin":
463
subprocess.Popen(["open", path])
464
else:
0 commit comments