diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-13 23:31:55 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-13 23:31:55 (GMT) |
commit | 9937a04994f0ae25e85cdebdadc19fa4cf5fc909 (patch) | |
tree | b4e239fb64ae91bfa3d23fdeec5f6327769bef79 /Mac | |
parent | 6d802a0ce35ea2d0058191e198edab2d87360278 (diff) | |
download | cpython-9937a04994f0ae25e85cdebdadc19fa4cf5fc909.zip cpython-9937a04994f0ae25e85cdebdadc19fa4cf5fc909.tar.gz cpython-9937a04994f0ae25e85cdebdadc19fa4cf5fc909.tar.bz2 |
Tweaked some button sizes to make them look better on OSX.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Tools/IDE/PyDebugger.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Tools/IDE/PyDebugger.py b/Mac/Tools/IDE/PyDebugger.py index bad02f1..ff218e6 100644 --- a/Mac/Tools/IDE/PyDebugger.py +++ b/Mac/Tools/IDE/PyDebugger.py @@ -173,9 +173,9 @@ class Debugger(bdb.Bdb): buttons.stopbutton = W.Button((58, 0, 50, 16), "Stop", self.do_stop) buttons.killbutton = W.Button((116, 0, 50, 16), "Kill", self.do_kill) buttons.line = W.VerticalLine((173, 0, 0, 0)) - buttons.stepbutton = W.Button((181, 0, 50, 16), "Step", self.do_step) - buttons.stepinbutton = W.Button((239, 0, 50, 16), "Step in", self.do_stepin) - buttons.stepoutbutton = W.Button((297, 0, 50, 16), "Step out", self.do_stepout) + buttons.stepbutton = W.Button((181, 0, 60, 16), "Step", self.do_step) + buttons.stepinbutton = W.Button((249, 0, 60, 16), "Step in", self.do_stepin) + buttons.stepoutbutton = W.Button((317, 0, 60, 16), "Step out", self.do_stepout) w.bind('cmdr', buttons.runbutton.push) w.bind('cmd.', buttons.stopbutton.push) |