diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-30 20:38:01 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-30 20:38:01 -0400 |
| commit | c5917de29c5452b4ff11441fe353fe46984caa4f (patch) | |
| tree | 743b61a7d435e8d78cef0616a7007e597704f403 /redo/control_darwin.go | |
| parent | 713be62f16b2f621eb104a1ba916ef5b1781eecc (diff) | |
Split out the default definitions of Control.allocate() into a single place.
Diffstat (limited to 'redo/control_darwin.go')
| -rw-r--r-- | redo/control_darwin.go | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/redo/control_darwin.go b/redo/control_darwin.go index f6f9312..8248fd9 100644 --- a/redo/control_darwin.go +++ b/redo/control_darwin.go @@ -28,16 +28,7 @@ func newControl(id C.id) *controlbase { c.fcontainerHide = func() { C.controlSetHidden(c.id, C.YES) } - c.fallocate = func(x int, y int, width int, height int, d *sizing) []*allocation { - // TODO split into its own function - return []*allocation{&allocation{ - x: x, - y: y, - width: width, - height: height, - this: c, - }} - } + c.fallocate = baseallocate(c) c.fpreferredSize = func(d *sizing) (int, int) { // TODO return 64, 32 |
