summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-22 07:27:57 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-22 07:27:57 (GMT)
commit5682850e1fc7eb83ba7672e23072152ecbafd08c (patch)
treecce6c37a4fb4decac512e0ef9043a0fa6c172378 /Lib/idlelib
parent6a4d52e86521cfabd0646daacd31ba08e6098a78 (diff)
parent4ab220ca6a9814830b52a5bdb7bcf2df58623ce5 (diff)
downloadcpython-5682850e1fc7eb83ba7672e23072152ecbafd08c.zip
cpython-5682850e1fc7eb83ba7672e23072152ecbafd08c.tar.gz
cpython-5682850e1fc7eb83ba7672e23072152ecbafd08c.tar.bz2
Merge with 3.5
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/configDialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py
index 3aa66721..f538817 100644
--- a/Lib/idlelib/configDialog.py
+++ b/Lib/idlelib/configDialog.py
@@ -1389,7 +1389,7 @@ class VerticalScrolledFrame(Frame):
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)