summaryrefslogtreecommitdiff
path: root/redo/tab_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-09 21:29:37 -0400
committerPietro Gagliardi <[email protected]>2014-08-09 21:29:37 -0400
commitea3dd093f7941cfc74af085fffc8e3f24b2ce0d5 (patch)
tree0f7abcc996179b9e3a7d948c45ea7c59e1dc8235 /redo/tab_darwin.go
parenteec2f985b0a78b3c15a3e71e14f897a3ccab5c97 (diff)
Changed PrefSize to PreferredSize throughout.
Diffstat (limited to 'redo/tab_darwin.go')
-rw-r--r--redo/tab_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/tab_darwin.go b/redo/tab_darwin.go
index 25b94d0..ba74f1f 100644
--- a/redo/tab_darwin.go
+++ b/redo/tab_darwin.go
@@ -41,7 +41,7 @@ func (t *tab) allocate(x int, y int, width int, height int, d *sizing) []*alloca
}
func (t *tab) preferredSize(d *sizing) (width, height int) {
- s := C.tabPrefSize(t._id)
+ s := C.tabPreferredSize(t._id)
return int(s.width), int(s.height)
}