diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-15 16:25:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 16:25:10 -0700 |
commit | 230b630a767a457c6e7e4d797548a172c64ae735 (patch) | |
tree | 9f0ce126847948a2842d99553c793a883229ecf1 | |
parent | a372a7d65320396d44e8beb976e3a6c382963d4e (diff) | |
download | cpython-git-230b630a767a457c6e7e4d797548a172c64ae735.tar.gz |
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 4c89c27e0c..09f455c250 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 ') |