summaryrefslogtreecommitdiff
path: root/objc_darwin.m
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-05-17 20:21:48 -0400
committerPietro Gagliardi <[email protected]>2014-05-17 20:21:48 -0400
commit216b5c183c0dad1e510969418eb3509e1df1d713 (patch)
tree183fbf2b3206be1671eeaa4dfe3e37278ee4d6a1 /objc_darwin.m
parentb9c12da83841b9f967f2579e81389ceade66dcb3 (diff)
Made drawing of NSScrollView backgrounds explicit on Mac OS X. This is what Interface Builder sets for NSTableViews, so we do that too for Listbox. This also means NSScrollView draws the background for our Areas, settling the clear clip rect TODO.
Diffstat (limited to 'objc_darwin.m')
-rw-r--r--objc_darwin.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/objc_darwin.m b/objc_darwin.m
index 09c2ec2..9628837 100644
--- a/objc_darwin.m
+++ b/objc_darwin.m
@@ -50,6 +50,8 @@ id makeScrollView(id content)
[scrollview setHasHorizontalScroller:YES];
[scrollview setHasVerticalScroller:YES];
[scrollview setAutohidesScrollers:YES];
+ // Interface Builder sets this for NSTableViews; we also want this on Areas
+ [scrollview setDrawsBackground:YES];
[scrollview setDocumentView:toNSView(content)];
return scrollview;
}