Revert "Merge pull request #869 from kier007/patch-1"

This reverts commit b38ef62447, reversing
changes made to c03f697729.
pull/873/head
Kenneth Estanislao 2025-01-06 14:14:04 +08:00
parent 7def969831
commit b518f4337d
1 changed files with 0 additions and 10 deletions

View File

@ -256,7 +256,6 @@ def create_root(start: Callable[[], None], destroy: Callable[[], None]) -> ctk.C
command=lambda: (
setattr(modules.globals, "map_faces", map_faces.get()),
save_switch_states(),
close_popup_if_switch_off()
),
)
map_faces_switch.place(relx=0.1, rely=0.75)
@ -383,15 +382,6 @@ def analyze_target(start: Callable[[], None], root: ctk.CTk):
else:
select_output_path(start)
def close_popup_if_switch_off():
global POPUP, POPUP_LIVE
if not modules.globals.map_faces:
if POPUP and POPUP.winfo_exists():
POPUP.destroy()
POPUP = None
if POPUP_LIVE and POPUP_LIVE.winfo_exists():
POPUP_LIVE.destroy()
POPUP_LIVE = None
def create_source_target_popup(
start: Callable[[], None], root: ctk.CTk, map: list