From: Terry Jan Reedy Date: Thu, 28 Jul 2016 01:42:54 +0000 (-0400) Subject: Issue #27620: Mark the default action button as the default. X-Git-Tag: v3.6.0a4~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b37dfce5bafe96472f8936a7a44fad0abae9e98;p=thirdparty%2FPython%2Fcpython.git Issue #27620: Mark the default action button as the default. --- diff --git a/Lib/idlelib/query.py b/Lib/idlelib/query.py index c4e2891f2594..c806c6b196ef 100644 --- a/Lib/idlelib/query.py +++ b/Lib/idlelib/query.py @@ -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)