diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-15 23:33:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 23:33:16 (GMT) |
commit | d55a775ac2fe32f3ed7e4b25f76d9f4d77745a1d (patch) | |
tree | 4ab1b2b7ba8945f0d603df85ca9241b13631e8d4 | |
parent | 8bd7a0b5810529cd3ed378de42a74e9301856f12 (diff) | |
download | cpython-d55a775ac2fe32f3ed7e4b25f76d9f4d77745a1d.zip cpython-d55a775ac2fe32f3ed7e4b25f76d9f4d77745a1d.tar.gz cpython-d55a775ac2fe32f3ed7e4b25f76d9f4d77745a1d.tar.bz2 |
gh-78143: IDLE - fix settings dialog page label. (GH-96009)
'/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>
-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 ') |