cpython (3.4): Issue #24782: Limit width of canvas and hence IDLE settings dialog.
https://hg.python.org/cpython/rev/0847398f9b00 changeset: 98827:0847398f9b00 branch: 3.4 parent: 98809:4bf862fc10a5 user: Terry Jan Reedy <tjreedy@udel.edu> date: Thu Oct 22 03:27:31 2015 -0400 summary: Issue #24782: Limit width of canvas and hence IDLE settings dialog. 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
participants (1)
-
terry.reedy