You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To keep my child windows in front of my parent window I use the following lines in my child window class: self.grab_set() # hijack all commands from the master (clicks on the main window are ignored) self.master.wait_window(self) # pause anything on the main window until this one closes
This works fine, except when I add the CTkScrollableDropdown in my child window. Two problems happens:
The clicks on the main window are ignored, but the child window goes to the back of the parent window when started.
The clicks on the ScrollableDropdown are ignored.
Could anyone help me with this issue?
The text was updated successfully, but these errors were encountered:
Rfaelv
changed the title
Not able to keep a child window with the CTKScrollableDropdown in front of the parent window
Not able to keep a child window with a CTKScrollableDropdown element in front of the parent window
Aug 13, 2024
Hello,
To keep my child windows in front of my parent window I use the following lines in my child window class:
self.grab_set() # hijack all commands from the master (clicks on the main window are ignored)
self.master.wait_window(self) # pause anything on the main window until this one closes
This works fine, except when I add the CTkScrollableDropdown in my child window. Two problems happens:
Could anyone help me with this issue?
The text was updated successfully, but these errors were encountered: