Add delete-key shortcut to remove content.
[dcpomatic.git] / src / wx / about_dialog.cc
index 1fd7d3da6cd680410b6df9a34a39c8f651096cdc..efe762fea1cccf1aaa48d258804419d6f96e4175 100644 (file)
@@ -196,6 +196,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Aditya Pratama"));
        supported_by.Add (wxT ("Ceridwen Productions"));
        supported_by.Add (wxT ("Ivan Pullman"));
+       supported_by.Add (wxT ("Desiderio Garcia Ramirez"));
        supported_by.Add (wxT ("Mark Rolfe"));
        supported_by.Add (wxT ("David Rozenthal"));
        supported_by.Add (wxT ("Lasse Salling"));
@@ -208,6 +209,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Bruce Taylor"));
        supported_by.Add (wxT ("Lawrence Towers"));
        supported_by.Add (wxT ("Richard Turner"));
+       supported_by.Add (wxT ("Stéphane Wagneur"));
        supported_by.Add (wxT ("Andrew Walls"));
        supported_by.Add (wxT ("Raoul Walzer"));
        supported_by.Add (wxT ("Wolfram Weber"));
@@ -299,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;