Mailing List Archive

gh-78143: IDLE - fix settings dialog page label. (#96009)
https://github.com/python/cpython/commit/f6b811059ac945a283bb59bf37efac162c3bbab6
commit: f6b811059ac945a283bb59bf37efac162c3bbab6
branch: main
author: Terry Jan Reedy <tjreedy@udel.edu>
committer: terryjreedy <tjreedy@udel.edu>
date: 2022-08-15T19:03:56-04:00
summary:

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.

files:
M Lib/idlelib/configdialog.py

diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py
index 57eaffeef396..8e478d743fb7 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 ')

_______________________________________________
Python-checkins mailing list
Python-checkins@python.org
https://mail.python.org/mailman/listinfo/python-checkins