This commit is contained in:
Orsiris de Jong 2024-01-14 23:37:39 +01:00
parent 32735ba924
commit eb3ae93baa
2 changed files with 2 additions and 2 deletions

View file

@ -558,7 +558,7 @@ class NPBackupRunner:
if binary:
if not self._using_dev_binary:
self._using_dev_binary = True
self.write_logs("Using dev binary !", level="warning")
self.write_logs("Using dev binary !", level="info")
self.restic_runner.binary = binary
else:
return False

View file

@ -213,7 +213,7 @@ def gui_thread_runner(
progress_window = sg.Window(
__gui_msg,
full_layout,
use_custom_titlebar=True,
use_custom_titlebar=False, # Will not show an icon in task bar if custom titlebar is set unless window is minimized, basically it can be hidden behind others with this option
grab_anywhere=True,
disable_close=True, # Don't allow closing this window via "X" since we still need to update it
background_color=BG_COLOR_LDR,