[bugfix] Splash Window: toolwindowをTrueにし忘れていて、起動時にタスクバーに見えてしまっていたのを修正。

This commit is contained in:
Sakamoto Shiina
2023-10-13 17:58:49 +09:00
parent 708bcea533
commit f24ca9c30d

View File

@@ -8,6 +8,7 @@ class SplashWindow(CTkToplevel):
self.overrideredirect(True)
self.configure(fg_color="#292a2d")
self.title("SplashWindow")
self.wm_attributes("-toolwindow", True)
sw=self.winfo_screenwidth()