summaryrefslogtreecommitdiff
path: root/redo/table_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-22 10:52:51 -0400
committerPietro Gagliardi <[email protected]>2014-08-22 10:52:51 -0400
commit20a65d96df8cfb27ebd8af3f6c5f23c5503432c5 (patch)
tree3f4547a6b184f9aab59a774fea4109bc53a631e3 /redo/table_unix.go
parent7ad1a9852e6c19b99eae880091d7eb89fde7fad3 (diff)
Wrapped GTK+ Areas in a GtkOverlay in preparation for adding OpenTextFieldAt().
Diffstat (limited to 'redo/table_unix.go')
-rw-r--r--redo/table_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/table_unix.go b/redo/table_unix.go
index 8fa18bc..3566c87 100644
--- a/redo/table_unix.go
+++ b/redo/table_unix.go
@@ -46,7 +46,7 @@ var (
func finishNewTable(b *tablebase, ty reflect.Type) Table {
widget := C.gtk_tree_view_new()
t := &table{
- scroller: newScroller(widget, true, true), // natively scrollable; has a border
+ scroller: newScroller(widget, true, true, false), // natively scrollable; has a border; no overlay
tablebase: b,
_widget: widget,
treeview: (*C.GtkTreeView)(unsafe.Pointer(widget)),