IDLE - Capitalize search dialogs' 'Close' button label. (#13691)

It seems to be the only widget label not capitalized.
This commit is contained in:
Terry Jan Reedy 2019-05-31 04:26:35 -04:00 committed by GitHub
parent 14a0e16c88
commit ba0430211f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

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