Tweaked some button sizes to make them look better on OSX.

This commit is contained in:
Jack Jansen 2002-12-13 23:31:55 +00:00
parent 6d802a0ce3
commit 9937a04994
1 changed files with 3 additions and 3 deletions

View File

@ -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)