summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-18 01:04:59 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-18 01:04:59 +0100
commit9e015bc7e21e6203c2b4a5d1818d5f4c0f725509 (patch)
tree1a65c61420b4f04151e37de0909addfa591a1f25 /src
parent5b6dde39fa2a6db206abcdb3b41df0b99b56f919 (diff)
Fix disappearing video panel on OS X.
Diffstat (limited to 'src')
-rw-r--r--src/wx/content_sub_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_sub_panel.cc b/src/wx/content_sub_panel.cc
index a30d3cfce..aab404b74 100644
--- a/src/wx/content_sub_panel.cc
+++ b/src/wx/content_sub_panel.cc
@@ -37,7 +37,7 @@ ContentSubPanel::ContentSubPanel (ContentPanel* p, wxString name)
, _sizer (new wxBoxSizer (wxVERTICAL))
, _name (name)
{
- SetScrollRate (-1, 8);
+ SetScrollRate (8, 8);
SetSizer (_sizer);
}