From f6b811059ac945a283bb59bf37efac162c3bbab6 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Mon, 15 Aug 2022 19:03:56 -0400 Subject: [PATCH] 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. --- Lib/idlelib/configdialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 57eaffeef39625..8e478d743fb767 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -121,7 +121,7 @@ def create_widgets(self): 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 ')