pygui fixed button layout on session options dialog
This commit is contained in:
parent
41b46b7e7a
commit
d9f48d14a7
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class SessionOptionsDialog(Dialog):
|
|||
button = ttk.Button(frame, text="Save", command=self.save)
|
||||
button.grid(row=0, column=0, padx=PADX, sticky="ew")
|
||||
button = ttk.Button(frame, text="Cancel", command=self.destroy)
|
||||
button.grid(row=0, column=1, padx=PADX, sticky="ew")
|
||||
button.grid(row=0, column=1, sticky="ew")
|
||||
|
||||
def save(self):
|
||||
config = self.config_frame.parse_config()
|
||||
|
|
Loading…
Add table
Reference in a new issue