Commit 9937a049 authored by Jack Jansen's avatar Jack Jansen

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

parent 6d802a0c
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment