diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2022-08-15 23:03:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 23:03:56 (GMT) |
commit | f6b811059ac945a283bb59bf37efac162c3bbab6 (patch) | |
tree | b1baa452ac66758fdbd98d478cc483833fc91693 /Lib/idlelib | |
parent | 3adb4d864bb18a51334c922a732e5e3602799ba1 (diff) | |
download | cpython-f6b811059ac945a283bb59bf37efac162c3bbab6.zip cpython-f6b811059ac945a283bb59bf37efac162c3bbab6.tar.gz cpython-f6b811059ac945a283bb59bf37efac162c3bbab6.tar.bz2 |
gh-78143: IDLE - fix settings dialog page label. (#96009)
'/Tab' should have been removed from the font page label
when the tab-spaces setting was moved to the Windows page.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/configdialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 57eaffe..8e478d7 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -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 ') |