summaryrefslogtreecommitdiff
path: root/listbox_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-05-15 19:55:16 -0400
committerPietro Gagliardi <[email protected]>2014-05-15 19:55:16 -0400
commit9d8976ababebfd7ce670cdb05e3bc303ac466bf6 (patch)
treef9ef14b706baab853c9067f25a4fc57174d0d7ad /listbox_darwin.go
parentb73d4e9010a273fd4e3e0b809959387a3b020cb0 (diff)
Migrated everything else to Objective-C native; fixed a few things I missed along the way.
Diffstat (limited to 'listbox_darwin.go')
-rw-r--r--listbox_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/listbox_darwin.go b/listbox_darwin.go
index 2c4db08..7f54a8d 100644
--- a/listbox_darwin.go
+++ b/listbox_darwin.go
@@ -182,7 +182,7 @@ func newListboxScrollView(listbox C.id) C.id {
)
scrollview := newScrollView(listbox)
- C.objc_msgSend_uint(scrollview, _setBorderType, _NSBezelBorder) // this is what Interface Builder gives the scroll view
+ C.giveScrollViewBezelBorder(scrollview) // this is what Interface Builder gives the scroll view
return scrollview
}