pygui most dialogs are modal, default dialogs to modal
This commit is contained in:
parent
ea4271d7cb
commit
9d1f5cfcc6
31 changed files with 37 additions and 45 deletions
|
@ -18,7 +18,7 @@ if TYPE_CHECKING:
|
|||
|
||||
class ServicesSelectDialog(Dialog):
|
||||
def __init__(self, master: Any, app: "Application", current_services: Set[str]):
|
||||
super().__init__(master, app, "Node Services", modal=True)
|
||||
super().__init__(master, app, "Node Services")
|
||||
self.groups = None
|
||||
self.services = None
|
||||
self.current = None
|
||||
|
@ -101,7 +101,7 @@ class ServicesSelectDialog(Dialog):
|
|||
|
||||
class CustomNodesDialog(Dialog):
|
||||
def __init__(self, master: "Application", app: "Application"):
|
||||
super().__init__(master, app, "Custom Nodes", modal=True)
|
||||
super().__init__(master, app, "Custom Nodes")
|
||||
self.edit_button = None
|
||||
self.delete_button = None
|
||||
self.nodes_list = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue