diff options
Diffstat (limited to 'redo/container_darwin.go')
| -rw-r--r-- | redo/container_darwin.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/redo/container_darwin.go b/redo/container_darwin.go index a1096f1..4936a62 100644 --- a/redo/container_darwin.go +++ b/redo/container_darwin.go @@ -39,13 +39,12 @@ func containerResized(data unsafe.Pointer, width C.intptr_t, height C.intptr_t) c.resize(0, 0, int(width), int(height)) } -// THIS IS A GUESS. TODO. -// The only indication that this is remotely correct is the Auto Layout Guide implying that 12 pixels is the "Aqua space". +// These are based on measurements from Interface Builder. const ( - macXMargin = 12 - macYMargin = 12 - macXPadding = 12 - macYPadding = 12 + macXMargin = 20 + macYMargin = 20 + macXPadding = 8 + macYPadding = 8 ) func (c *container) beginResize() (d *sizing) { |
