diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-05-31 04:26:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-31 04:26:35 -0400 |
commit | ba0430211f5101c9d748d72b03926ca79c5252a8 (patch) | |
tree | 9c95d46313ed986fd5f99eba803d2f7fa521d732 /Lib/idlelib/searchbase.py | |
parent | 14a0e16c8805f7ba7c98132ead815dcfdf0e9d33 (diff) | |
download | cpython-git-ba0430211f5101c9d748d72b03926ca79c5252a8.tar.gz |
IDLE - Capitalize search dialogs' 'Close' button label. (#13691)
It seems to be the only widget label not capitalized.
Diffstat (limited to 'Lib/idlelib/searchbase.py')
-rw-r--r-- | Lib/idlelib/searchbase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/searchbase.py b/Lib/idlelib/searchbase.py index f0e3d6f14b..74ba853851 100644 --- a/Lib/idlelib/searchbase.py +++ b/Lib/idlelib/searchbase.py @@ -172,7 +172,7 @@ class SearchDialogBase: f = self.buttonframe = Frame(self.top) f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2) - b = self.make_button("close", self.close) + b = self.make_button("Close", self.close) b.lower() |