]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-78143: IDLE - fix settings dialog page label. (#96009)
authorTerry Jan Reedy <tjreedy@udel.edu>
Mon, 15 Aug 2022 23:03:56 +0000 (19:03 -0400)
committerGitHub <noreply@github.com>
Mon, 15 Aug 2022 23:03:56 +0000 (19:03 -0400)
'/Tab' should have been removed from the font page label
when the tab-spaces setting was moved to the Windows page.

Lib/idlelib/configdialog.py

index 57eaffeef39625eec3e9d3b0f45c8d93b031910e..8e478d743fb7678ff3ae29d82a88e07ef634b2b5 100644 (file)
@@ -121,7 +121,7 @@ class ConfigDialog(Toplevel):
         self.winpage = WinPage(note)
         self.shedpage = ShedPage(note)
 
-        note.add(self.fontpage, text='Fonts/Tabs')
+        note.add(self.fontpage, text=' Fonts ')
         note.add(self.highpage, text='Highlights')
         note.add(self.keyspage, text=' Keys ')
         note.add(self.winpage, text=' Windows ')