mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Issue #27620: Mark the default action button as the default.
This commit is contained in:
parent
263893c261
commit
6b37dfce5b
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class Query(Toplevel):
|
|||
self.entry.focus_set()
|
||||
|
||||
buttons = Frame(self)
|
||||
self.button_ok = Button(buttons, text='Ok',
|
||||
self.button_ok = Button(buttons, text='Ok', default='active',
|
||||
width=8, command=self.ok)
|
||||
self.button_cancel = Button(buttons, text='Cancel',
|
||||
width=8, command=self.cancel)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue