diff --git a/compile/compile.bat b/compile/compile.bat index c494af6..2d8625e 100644 --- a/compile/compile.bat +++ b/compile/compile.bat @@ -4,7 +4,7 @@ :: First make sure to "pip install -r requirements.txt" TITLE Easy-Gifer Compiler ECHO: -ECHO Easy_Gifer Compiler v1 +ECHO Easy_Gifer Compiler v2 ECHO: ECHO PRESS ANY KEY TO START COMPILING ECHO: diff --git a/compile/compile.spec b/compile/compile.spec index fd349ec..846f3c0 100644 --- a/compile/compile.spec +++ b/compile/compile.spec @@ -26,7 +26,7 @@ exe = EXE(pyz, a.zipfiles, a.datas, [], - name='Easy-Gifer-v1', + name='Easy-Gifer-v2', icon='./app.ico', debug=False, bootloader_ignore_signals=False, diff --git a/views/__init__.py b/views/__init__.py index 1b3b29c..7cb5411 100644 --- a/views/__init__.py +++ b/views/__init__.py @@ -33,13 +33,13 @@ def PROGRESS_POPUP(bar_end=100): def INFO_POPUP(): - return sg.popup_yes_no(txt.INFO, font=style.F_14, no_titlebar=True) + return sg.popup_yes_no(txt.INFO, font=style.F_14, no_titlebar=True, keep_on_top=True) def DONE_POPUP(): - return sg.popup_ok(txt.DONE, font=style.F_14, no_titlebar=True) + return sg.popup_ok(txt.DONE, font=style.F_14, no_titlebar=True, keep_on_top=True) def ERROR_POPUP(msg: str): msg = f"\n{msg}\n" - return sg.popup_error(msg, font=style.F_14) + return sg.popup_error(msg, font=style.F_14, keep_on_top=True)