From 2a62aecb2112020984ca910a7d8c3df14bfd3979 Mon Sep 17 00:00:00 2001 From: 0x4C4A Date: Sat, 18 Oct 2025 17:41:36 +0300 Subject: [PATCH] Fix "Open theme" button double path concat --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index 989388fd..8b4a29c7 100755 --- a/configure.py +++ b/configure.py @@ -456,9 +456,9 @@ def on_weatherping_click(self): self.more_config_window.show() def on_open_theme_folder_click(self): - path = f'"{MAIN_DIRECTORY}res/themes"' + path = f'{MAIN_DIRECTORY}res/themes' if platform.system() == "Windows": - os.startfile(path) + os.startfile(f'"{path}"') elif platform.system() == "Darwin": subprocess.Popen(["open", path]) else: