[Update] Remove the background color that was for testing.

This commit is contained in:
Sakamoto Shiina
2023-10-20 06:19:53 +09:00
parent 55db1c2e75
commit e8ee8891b0
7 changed files with 35 additions and 43 deletions

View File

@@ -24,14 +24,6 @@ class _CreateErrorWindow(CTkToplevel):
self.withdraw()
self.hide = True
self.title("")
self.overrideredirect(True)
self.wm_attributes("-alpha", 0)
self.wm_attributes("-toolwindow", True)
self.configure(fg_color="#fff")
self.settings = settings
self.attach_widget = None
self._view_variable = view_variable
@@ -53,6 +45,15 @@ class _CreateErrorWindow(CTkToplevel):
self.x_pos = None
self.y_pos = None
self.title("")
self.overrideredirect(True)
self.wm_attributes("-alpha", 0)
self.wm_attributes("-toolwindow", True)
self.configure(fg_color=self.message_bg_color)
self.grid_rowconfigure(0,weight=1)