[Python-checkins] cpython: Issue #17642: add larger font sizes for classroom projection.

terry.reedy python-checkins at python.org
Tue Aug 30 20:19:29 EDT 2016


https://hg.python.org/cpython/rev/c9d59e6cc1e4
changeset:   102962:c9d59e6cc1e4
parent:      102960:3b59ca37b4a1
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Tue Aug 30 20:19:13 2016 -0400
summary:
  Issue #17642: add larger font sizes for classroom projection.

files:
  Lib/idlelib/configdialog.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py
--- a/Lib/idlelib/configdialog.py
+++ b/Lib/idlelib/configdialog.py
@@ -1018,7 +1018,8 @@
             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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list