Fixed Bug about Open and Closing Frames

This commit is contained in:
Falko Victor Habel 2024-03-11 22:05:17 +01:00
parent 3c7d7326f7
commit e4c3f0da3a
1 changed files with 1 additions and 1 deletions

View File

@ -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):