summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/about_dialog.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc
index ff6acedb1..efe762fea 100644
--- a/src/wx/about_dialog.cc
+++ b/src/wx/about_dialog.cc
@@ -301,7 +301,10 @@ AboutDialog::add_section (wxString name, wxArrayString credits)
static bool first = true;
int const N = 4;
- wxPanel* panel = new wxPanel (_notebook, wxID_ANY);
+ wxScrolledWindow* panel = new wxScrolledWindow (_notebook);
+ panel->SetMaxSize (wxSize (-1, 380));
+ panel->EnableScrolling (false, true);
+ panel->SetScrollRate (0, 32);
wxSizer* overall_sizer = new wxBoxSizer (wxHORIZONTAL);
vector<wxSizer*> sizers;