[Python-checkins] cpython (2.7): 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/f478f9b88319
changeset:   102961:f478f9b88319
branch:      2.7
parent:      102958:a5c43e660ae9
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Tue Aug 30 20:19:07 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
@@ -1012,7 +1012,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