[Update] アップデート中画面をタスクバーなどからウィンドウを閉じた時、メインプロセスも終了するように。
※アプデ中の終了(中断)操作は、ユーザーの自己責任とする。
This commit is contained in:
@@ -5,13 +5,14 @@ from customtkinter import CTkImage, CTkLabel, CTkToplevel, CTkProgressBar, CTkFr
|
|||||||
from ..ui_utils import openImageKeepAspectRatio, getImageFileFromUiUtils, setGeometryToCenterOfScreen, fadeInAnimation, generateGradientColor, getImagePath
|
from ..ui_utils import openImageKeepAspectRatio, getImageFileFromUiUtils, setGeometryToCenterOfScreen, fadeInAnimation, generateGradientColor, getImagePath
|
||||||
|
|
||||||
class UpdatingWindow(CTkToplevel):
|
class UpdatingWindow(CTkToplevel):
|
||||||
def __init__(self):
|
def __init__(self, vrct_gui):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.withdraw()
|
self.withdraw()
|
||||||
self.overrideredirect(True)
|
self.overrideredirect(True)
|
||||||
self.configure(fg_color="#292a2d")
|
self.configure(fg_color="#292a2d")
|
||||||
self.title("Updating...")
|
self.title("Updating...")
|
||||||
self.after(200, lambda: self.iconbitmap(getImagePath("vrct_logo_mark_black.ico")))
|
self.after(200, lambda: self.iconbitmap(getImagePath("vrct_logo_mark_black.ico")))
|
||||||
|
self.protocol("WM_DELETE_WINDOW", vrct_gui._quitVRCT)
|
||||||
# self.wm_attributes("-toolwindow", True)
|
# self.wm_attributes("-toolwindow", True)
|
||||||
self.is_showed_downloading_process = False
|
self.is_showed_downloading_process = False
|
||||||
self.is_showed_unpackaging_process = False
|
self.is_showed_unpackaging_process = False
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ class VRCT_GUI(CTk):
|
|||||||
init_scaling=(self._view_variable.VAR_TEXTBOX_UI_SCALING.get()/100)
|
init_scaling=(self._view_variable.VAR_TEXTBOX_UI_SCALING.get()/100)
|
||||||
)
|
)
|
||||||
|
|
||||||
self.updating_window = UpdatingWindow()
|
self.updating_window = UpdatingWindow(vrct_gui=self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user