[Python-checkins] cpython (merge 3.5 -> default): Merge with 3.5

terry.reedy python-checkins at python.org
Thu Oct 22 03:28:23 EDT 2015


https://hg.python.org/cpython/rev/5759e9cc3639
changeset:   98829:5759e9cc3639
parent:      98825:5c7dd88cd0c5
parent:      98828:96c6ab24bdb9
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Thu Oct 22 03:27:57 2015 -0400
summary:
  Merge with 3.5

files:
  Lib/idlelib/configDialog.py |  2 +-
  1 files changed, 1 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
@@ -1389,7 +1389,7 @@
         vscrollbar = Scrollbar(self, orient=VERTICAL)
         vscrollbar.pack(fill=Y, side=RIGHT, expand=FALSE)
         canvas = Canvas(self, bd=0, highlightthickness=0,
-                        yscrollcommand=vscrollbar.set)
+                        yscrollcommand=vscrollbar.set, width=240)
         canvas.pack(side=LEFT, fill=BOTH, expand=TRUE)
         vscrollbar.config(command=canvas.yview)
 

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


More information about the Python-checkins mailing list