summaryrefslogtreecommitdiff
path: root/redo
diff options
context:
space:
mode:
Diffstat (limited to 'redo')
-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 7dcd60f..e798443 100644
--- a/redo/window_unix.go
+++ b/redo/window_unix.go
@@ -42,7 +42,7 @@ func newWindow(title string, width int, height int, control Control) *window {
C.gpointer(unsafe.Pointer(w)))
C.gtk_window_resize(w.window, C.gint(width), C.gint(height))
w.container = newContainer(control)
- // TODO make a method of container
+ // TODO make a method of container? because this would conflict with tabs...
C.gtk_container_add(w.wc, w.container.layoutwidget)
return w
}