summaryrefslogtreecommitdiff
path: root/redo/control_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'redo/control_unix.go')
-rw-r--r--redo/control_unix.go11
1 files changed, 1 insertions, 10 deletions
diff --git a/redo/control_unix.go b/redo/control_unix.go
index 92baa1b..d0a4c18 100644
--- a/redo/control_unix.go
+++ b/redo/control_unix.go
@@ -35,16 +35,7 @@ func newControl(widget *C.GtkWidget) *controlbase {
c.fcontainerHide = func() {
C.gtk_widget_hide(c.widget)
}
- 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) {
// GTK+ 3 makes this easy: controls can tell us what their preferred size is!
// ...actually, it tells us two things: the "minimum size" and the "natural size".