Skip to content

Commit ebdd175

Browse files
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>
1 parent f3b2d4c commit ebdd175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

idlelib/configdialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def create_widgets(self):
121121
self.winpage = WinPage(note)
122122
self.shedpage = ShedPage(note)
123123

124-
note.add(self.fontpage, text='Fonts/Tabs')
124+
note.add(self.fontpage, text=' Fonts ')
125125
note.add(self.highpage, text='Highlights')
126126
note.add(self.keyspage, text=' Keys ')
127127
note.add(self.winpage, text=' Windows ')

0 commit comments

Comments
 (0)