]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-78143: IDLE - fix settings dialog page label. (GH-96009)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 15 Aug 2022 23:25:10 +0000 (16:25 -0700)
committerGitHub <noreply@github.com>
Mon, 15 Aug 2022 23:25:10 +0000 (16:25 -0700)
'/Tab' should have been removed from the font page label
when the tab-spaces setting was moved to the Windows page.
(cherry picked from commit f6b811059ac945a283bb59bf37efac162c3bbab6)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Lib/idlelib/configdialog.py

index 4c89c27e0c0d617a8808c5d907768d0f9a6974c9..09f455c2500f040b8c65a3d344dda933541c9b17 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 ')