From 68cdbe16845a7a62f85bcdac6a8cfc007142327f Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Thu, 18 Apr 2024 13:32:24 +0900 Subject: [PATCH] =?UTF-8?q?[Update]=20=E8=B5=B7=E5=8B=95=E6=99=82=E3=82=B9?= =?UTF-8?q?=E3=83=97=E3=83=A9=E3=83=83=E3=82=B7=E3=83=A5=E7=94=BB=E9=9D=A2?= =?UTF-8?q?=E3=82=92=E3=82=BF=E3=82=B9=E3=82=AF=E3=83=90=E3=83=BC=E3=81=AB?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E3=80=82=20=E2=80=BB=E8=B5=B7=E5=8B=95?= =?UTF-8?q?=E6=99=82=E9=96=93=E3=81=8C=E9=95=B7=E3=81=84=E3=81=9F=E3=82=81?= =?UTF-8?q?=E3=80=81=E3=82=BF=E3=82=B9=E3=82=AF=E3=83=90=E3=83=BC=E3=81=AB?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E3=81=99=E3=82=8B=E3=81=93=E3=81=A8=E3=81=AB?= =?UTF-8?q?=E3=82=88=E3=82=8A=E3=80=81=E4=BB=96=E3=81=AE=E7=94=BB=E9=9D=A2?= =?UTF-8?q?=E3=81=8C=E8=A6=86=E3=81=84=E3=81=8B=E3=81=B6=E3=81=95=E3=81=A3?= =?UTF-8?q?=E3=81=9F=E3=81=A8=E3=81=97=E3=81=A6=E3=82=82=E3=80=81=E3=81=84?= =?UTF-8?q?=E3=81=A4=E3=81=A7=E3=82=82=E6=89=8B=E9=96=93=E3=81=AB=E8=A1=A8?= =?UTF-8?q?=E7=A4=BA=E3=81=A7=E3=81=8D=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= =?UTF-8?q?=E3=80=82=20=EF=BC=88=E3=83=A6=E3=83=BC=E3=82=B6=E3=83=BC?= =?UTF-8?q?=E3=81=AB=E3=80=81=E4=BB=8A=E4=BD=95=E3=82=92=E8=A1=8C=E3=81=A3?= =?UTF-8?q?=E3=81=A6=E3=81=84=E3=82=8B=E3=81=AE=E3=81=8B=E3=82=92=E3=82=BF?= =?UTF-8?q?=E3=82=B9=E3=82=AF=E3=83=90=E3=83=BC=E3=81=8B=E3=82=89=E8=A6=8B?= =?UTF-8?q?=E3=81=88=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E3=81=97=E3=81=9F?= =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=9F=E3=80=82=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vrct_gui/splash_window/SplashWindow.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vrct_gui/splash_window/SplashWindow.py b/vrct_gui/splash_window/SplashWindow.py index 3a1084c0..9b9a5f12 100644 --- a/vrct_gui/splash_window/SplashWindow.py +++ b/vrct_gui/splash_window/SplashWindow.py @@ -2,7 +2,7 @@ import math import time from customtkinter import CTkImage, CTkLabel, CTkToplevel, CTkProgressBar, CTkFrame -from ..ui_utils import openImageKeepAspectRatio, getImageFileFromUiUtils, setGeometryToCenterOfScreen, fadeInAnimation +from ..ui_utils import openImageKeepAspectRatio, getImageFileFromUiUtils, getImagePath, setGeometryToCenterOfScreen, fadeInAnimation class SplashWindow(CTkToplevel): def __init__(self): @@ -10,8 +10,9 @@ class SplashWindow(CTkToplevel): self.withdraw() self.overrideredirect(True) self.configure(fg_color="#292a2d") - self.title("SplashWindow") - self.wm_attributes("-toolwindow", True) + self.title("Starting Up...") + self.after(200, lambda: self.iconbitmap(getImagePath("vrct_logo_mark_black.ico"))) + # self.wm_attributes("-toolwindow", True) self.is_showed_weight_download_progressbar = False