Issue #27620: Mark the default action button as the default.

This commit is contained in:
Terry Jan Reedy 2016-07-27 21:42:54 -04:00
parent 263893c261
commit 6b37dfce5b
1 changed files with 1 additions and 1 deletions

View File

@ -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)