From 841bbac9d4340871a64fdd95b33a776f1db1ffaf Mon Sep 17 00:00:00 2001 From: Ramforth Date: Mon, 3 Nov 2025 01:34:32 +0100 Subject: [PATCH] Fix: Explicitly set empty text for CTkSwitch to suppress default label --- gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.py b/gui.py index 573d2f3..888d9a5 100644 --- a/gui.py +++ b/gui.py @@ -48,7 +48,7 @@ class VideoConverterGUI: self.progress.set(0) # --- Mode Switch (packed into main_frame) --- - self.mode_switch = customtkinter.CTkSwitch(self.main_frame, command=self.toggle_mode) + self.mode_switch = customtkinter.CTkSwitch(self.main_frame, text="", command=self.toggle_mode) self.mode_switch.pack(pady=10, padx=20, anchor="w") self.mode_switch.select()