diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-03 14:56:59 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-03 14:56:59 (GMT) |
commit | 5125c76b689da26beec7dd4e60595ce0dd661d93 (patch) | |
tree | 1e0d2f64e42bd202c7fd9d2b8c8c408867805f97 /Mac/Tools | |
parent | 885d4f65776b650e51301ac4cb3138fa08c82cda (diff) | |
download | cpython-5125c76b689da26beec7dd4e60595ce0dd661d93.zip cpython-5125c76b689da26beec7dd4e60595ce0dd661d93.tar.gz cpython-5125c76b689da26beec7dd4e60595ce0dd661d93.tar.bz2 |
Gave the text fields a little more space, so they don't get cut off.
Diffstat (limited to 'Mac/Tools')
-rw-r--r-- | Mac/Tools/IDE/PyDebugger.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Tools/IDE/PyDebugger.py b/Mac/Tools/IDE/PyDebugger.py index ff218e6..18a089e 100644 --- a/Mac/Tools/IDE/PyDebugger.py +++ b/Mac/Tools/IDE/PyDebugger.py @@ -153,7 +153,7 @@ class Debugger(bdb.Bdb): browserpanes.globals.browser = PyBrowser.BrowserWidget((0, 16, 0, 0)) w.panes.bottom = bottom = W.Group(None) - bottom.src = src = W.Group((0, 52, 0, 0)) + bottom.src = src = W.Group((0, 64, 0, 0)) source = SourceViewer((1, 1, -15, -15), readonly = 1, debugger = self) src.optionsmenu = W.PopupMenu((-16, 0, 16, 16), []) src.optionsmenu.bind('<click>', self.makeoptionsmenu) @@ -164,10 +164,10 @@ class Debugger(bdb.Bdb): src.frame = W.Frame((0, 0, -15, -15)) bottom.tracingmonitor = TracingMonitor((0, 23, 6, 6)) - bottom.state = W.TextBox((12, 20, 0, 16), self.reason) + bottom.state = W.TextBox((12, 24, 0, 16), self.reason) - bottom.srctitle = W.TextBox((12, 36, 0, 14)) - bottom.buttons = buttons = W.Group((12, 0, 0, 16)) + bottom.srctitle = W.TextBox((12, 44, 0, 16)) + bottom.buttons = buttons = W.Group((12, 0, 0, 20)) buttons.runbutton = W.Button((0, 0, 50, 16), "Run", self.do_run) buttons.stopbutton = W.Button((58, 0, 50, 16), "Stop", self.do_stop) |