[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

@@ -11,20 +11,17 @@ class _CreateWindowCover(CTkToplevel):
self.BIND_CONFIGURE_ADJUSTED_GEOMETRY_FUNC_ID=None
self.BIND_FOCUS_IN_FUNC_ID=None
self.title("")
self.overrideredirect(True)
self.wm_attributes("-toolwindow", True)
self.attach_window = attach_window
self.configure(fg_color="#ff7f50")
self.protocol("WM_DELETE_WINDOW", lambda: self.withdraw())
self.settings = settings
self._view_variable = view_variable
self.title("")
self.overrideredirect(True)
self.wm_attributes("-toolwindow", True)
self.configure(fg_color="black")
self.protocol("WM_DELETE_WINDOW", lambda: self.withdraw())
self.grid_rowconfigure(0,weight=1)
self.grid_columnconfigure(0,weight=1)
self.cover_container = CTkFrame(self, corner_radius=0, fg_color="black", width=0, height=0)