Skip to content

Commit 230b630

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 f6b8110) Co-authored-by: Terry Jan Reedy <[email protected]>
1 parent a372a7d commit 230b630

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/idlelib/configdialog.py

Lines changed: 1 addition & 1 deletion
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)