From e4c3f0da3a4d2c6742897dd3af821802644c24ae Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Mon, 11 Mar 2024 22:05:17 +0100 Subject: [PATCH] Fixed Bug about Open and Closing Frames --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 477656c..d7de1a4 100644 --- a/main.py +++ b/main.py @@ -215,7 +215,7 @@ class App(Ctk.CTk): return ( (self.open_folder is not None and self.open_folder.winfo_ismapped()) or (self.create_folder is not None and self.create_folder.winfo_ismapped()) or - (self.Switch_folder is not None and self.Switch_folder.winfo_ismapped() and self.last_frame != self.buttons_frame) + (self.Switch_folder is not None and self.Switch_folder.winfo_ismapped() and self.last_opened_labeling_frame == self.labeling) ) def switch_to_labeling(self):