summaryrefslogtreecommitdiff
path: root/redo/table_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-08 20:31:15 -0400
committerPietro Gagliardi <[email protected]>2014-08-08 20:31:15 -0400
commit8ee7b2b8097ee7d67bb38d0180e81f53c6d05326 (patch)
tree69f9f2df32472968ea29d6b0c65c6557da231447 /redo/table_unix.go
parentff6c3a7cbeb120892f50afbe849ecdbeb32aebc3 (diff)
Removed borders from Areas on the GTK+ backend.
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 f6ac068..611beae 100644
--- a/redo/table_unix.go
+++ b/redo/table_unix.go
@@ -31,7 +31,7 @@ type table struct {
func finishNewTable(b *tablebase, ty reflect.Type) Table {
widget := C.gtk_tree_view_new()
t := &table{
- scroller: newScroller(widget, true),
+ scroller: newScroller(widget, true, true), // natively scrollable; has a border
tablebase: b,
_widget: widget,
treeview: (*C.GtkTreeView)(unsafe.Pointer(widget)),