Supporter.
[dcpomatic.git] / src / wx / about_dialog.cc
index c13e8b4f322c3bf47d0268d706305aba3e805113..5f707ff1b5c531c4c9382616c51e1ebfc7d484e6 100644 (file)
@@ -161,7 +161,9 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Patrick Haderer"));
        supported_by.Add (wxT ("Jeff Hemingway"));
        supported_by.Add (wxT ("Antonio Ruiz Hernandez"));
+       supported_by.Add (wxt ("Karl Jacob"));
        supported_by.Add (wxT ("Jonathan Jensen"));
+       supported_by.Add (wxT ("Thierry Journet"));
        supported_by.Add (wxT ("Zbigniew Kamiński"));
        supported_by.Add (wxT ("Chris Kay"));
        supported_by.Add (wxT ("Lars Kelto"));
@@ -180,6 +182,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Paweł Lipiński"));
        supported_by.Add (wxT ("Adrian Manolescu"));
        supported_by.Add (wxT ("Mattias Mattsson"));
+       supported_by.Add (wxT ("George Mazarakis"));
        supported_by.Add (wxT ("Kjarten Michaelsen"));
        supported_by.Add (wxT ("Aldo Midali"));
        supported_by.Add (wxT ("Sylvain Mielle"));
@@ -191,8 +194,10 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Jerome Cohen Olivar"));
        supported_by.Add (wxT ("Kevin Orman"));
        supported_by.Add (wxT ("Rui Pereira"));
+       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"));
@@ -205,6 +210,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"));
@@ -296,7 +302,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;