summaryrefslogtreecommitdiff
path: root/redo/table_unix.go
diff options
context:
space:
mode:
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)),