From 286704beddf7a4b3bf5bcdfa7a7ea4e32110d7d3 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 28 Jul 2014 15:02:27 -0400 Subject: Fixed the proper recursive application of spaced on Windows tabs by having container.resize() also take the origin coordinates as arguments. --- redo/containers_unix.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'redo/containers_unix.go') diff --git a/redo/containers_unix.go b/redo/containers_unix.go index fbb63ee..a6fe832 100644 --- a/redo/containers_unix.go +++ b/redo/containers_unix.go @@ -66,5 +66,6 @@ func (t *tab) allocate(x int, y int, width int, height int, d *sizing) []*alloca //export layoutResizing func layoutResizing(wid *C.GtkWidget, r *C.GdkRectangle, data C.gpointer) { c := (*container)(unsafe.Pointer(data)) - c.resize(int(r.width), int(r.height)) + // the layout's coordinate system is localized, so the origin is (0, 0) + c.resize(0, 0, int(r.width), int(r.height)) } -- cgit v1.2.3