summaryrefslogtreecommitdiff
path: root/redo/window_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-25 20:47:08 -0400
committerPietro Gagliardi <[email protected]>2014-07-25 20:47:08 -0400
commitc676a2d9b7996df8d76d42c47b5f376b72b08ae0 (patch)
tree6d7346ca95c1b2b593ba30fae37d24b2c4372509 /redo/window_unix.go
parent3d5e8feba4d2980f0be647231ae0f75385afa45b (diff)
Implemented Tab on GTK+. I really don't like the way sizing works now...
Diffstat (limited to 'redo/window_unix.go')
-rw-r--r--redo/window_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/window_unix.go b/redo/window_unix.go
index 6ab68b1..736ad7e 100644
--- a/redo/window_unix.go
+++ b/redo/window_unix.go
@@ -49,7 +49,7 @@ func newWindow(title string, width int, height int, control Control) *window {
closing: newEvent(),
container: new(container),
}
- w.container.beginResize = w.beginResize
+ w.container.beginResize = beginResize
C.gtk_window_set_title(w.window, ctitle)
g_signal_connect(
C.gpointer(unsafe.Pointer(w.window)),