summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-22 07:27:44 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-22 07:27:44 (GMT)
commit4ab220ca6a9814830b52a5bdb7bcf2df58623ce5 (patch)
tree0e679050603f7b349b626f15bb405f569a3d4551
parent05492b898914c869e405cddde056fe880697967c (diff)
parentd081229c4ea9453e68381fb8a6dac62a0638bc2d (diff)
downloadcpython-4ab220ca6a9814830b52a5bdb7bcf2df58623ce5.zip
cpython-4ab220ca6a9814830b52a5bdb7bcf2df58623ce5.tar.gz
cpython-4ab220ca6a9814830b52a5bdb7bcf2df58623ce5.tar.bz2
Merge with 3.4
-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)