diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-31 00:19:07 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-31 00:19:07 (GMT) |
commit | 28fb4da253e5dc108fe99da4c6fe64d110dd469c (patch) | |
tree | d598d3035ab114b5461c3ed2ba948c63d5ecb901 /Lib/idlelib/configDialog.py | |
parent | 580ca656bd78a8f1a905a7be082c5043dbf8659a (diff) | |
download | cpython-28fb4da253e5dc108fe99da4c6fe64d110dd469c.zip cpython-28fb4da253e5dc108fe99da4c6fe64d110dd469c.tar.gz cpython-28fb4da253e5dc108fe99da4c6fe64d110dd469c.tar.bz2 |
Issue #17642: add larger font sizes for classroom projection.
Diffstat (limited to 'Lib/idlelib/configDialog.py')
-rw-r--r-- | Lib/idlelib/configDialog.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index b4866dd..d53f5ff 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -1012,7 +1012,8 @@ class ConfigDialog(Toplevel): pass ##font size dropdown self.optMenuFontSize.SetMenu(('7', '8', '9', '10', '11', '12', '13', - '14', '16', '18', '20', '22'), fontSize ) + '14', '16', '18', '20', '22', + '25', '29', '34', '40'), fontSize ) ##fontWeight self.fontBold.set(fontBold) ##font sample |