mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
fix input dialog for linux
This commit is contained in:
@ -43,12 +43,12 @@ class CTkInputDialog(CTkToplevel):
|
||||
|
||||
self.title(title)
|
||||
self.focus_force()
|
||||
self.grab_set() # make other windows not clickable
|
||||
self.lift() # lift window on top
|
||||
self.attributes("-topmost", True) # stay on top
|
||||
self.protocol("WM_DELETE_WINDOW", self._on_closing)
|
||||
self.after(0, self._create_widgets) # create widgets with slight delay, to avoid white flickering of background
|
||||
self.after(500, lambda: self.resizable(False, False))
|
||||
self.grab_set() # make other windows not clickable
|
||||
|
||||
def _create_widgets(self):
|
||||
|
||||
|
Reference in New Issue
Block a user