diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-05-29 05:46:48 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-05-29 05:46:48 (GMT) |
commit | 679a2feb80ad25c2ef47e1d208f3cf81452f00b7 (patch) | |
tree | 6927c7e0d7d265fcc6ced778fba56d7ada4195a9 /Lib/idlelib/ObjectBrowser.py | |
parent | 7434ed7b6aadbe368f7f9470187741eda07d9fd7 (diff) | |
parent | 2e8234a5975a79773584220a8f4d61f5fc5cf8e9 (diff) | |
download | cpython-679a2feb80ad25c2ef47e1d208f3cf81452f00b7.zip cpython-679a2feb80ad25c2ef47e1d208f3cf81452f00b7.tar.gz cpython-679a2feb80ad25c2ef47e1d208f3cf81452f00b7.tar.bz2 |
Merge with 3.4
Diffstat (limited to 'Lib/idlelib/ObjectBrowser.py')
-rw-r--r-- | Lib/idlelib/ObjectBrowser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/ObjectBrowser.py b/Lib/idlelib/ObjectBrowser.py index 0f3c1bc..7b57aa4 100644 --- a/Lib/idlelib/ObjectBrowser.py +++ b/Lib/idlelib/ObjectBrowser.py @@ -126,8 +126,9 @@ def _object_browser(parent): import sys from tkinter import Tk root = Tk() + root.title("Test ObjectBrowser") width, height, x, y = list(map(int, re.split('[x+]', parent.geometry()))) - root.geometry("+%d+%d"%(x, y + 100)) + root.geometry("+%d+%d"%(x, y + 150)) root.configure(bd=0, bg="yellow") root.focus_set() sc = ScrolledCanvas(root, bg="white", highlightthickness=0, takefocus=1) |