summaryrefslogtreecommitdiff
path: root/redo/containers_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-28 15:02:27 -0400
committerPietro Gagliardi <[email protected]>2014-07-28 15:02:27 -0400
commit286704beddf7a4b3bf5bcdfa7a7ea4e32110d7d3 (patch)
treeafe620872b92c1ba3824ba2153d92473226ab284 /redo/containers_darwin.go
parent13bcf728baf81705ddd09c72991893bffa34b8ae (diff)
Fixed the proper recursive application of spaced on Windows tabs by having container.resize() also take the origin coordinates as arguments.
Diffstat (limited to 'redo/containers_darwin.go')
-rw-r--r--redo/containers_darwin.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/redo/containers_darwin.go b/redo/containers_darwin.go
index abb9e00..be74096 100644
--- a/redo/containers_darwin.go
+++ b/redo/containers_darwin.go
@@ -42,6 +42,7 @@ func (t *tab) allocate(x int, y int, width int, height int, d *sizing) []*alloca
func tabResized(data unsafe.Pointer, width C.intptr_t, height C.intptr_t) {
t := (*tab)(unsafe.Pointer(data))
for _, c := range t.containers {
- c.resize(int(width), int(height))
+ // the tab area's coordinate system is localized, so the origin is (0, 0)
+ c.resize(0, 0, int(width), int(height))
}
}