Snap content to reel_split_points.
[dcpomatic.git] / src / wx / about_dialog.cc
index ff6acedb1aca932ba448b475cb1e7ec355287ac6..a325c4a22de0a11bf755537a677c27828a86007f 100644 (file)
@@ -99,6 +99,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        translated_by.Add (wxT ("Manuel AC"));
        translated_by.Add (wxT ("Max Aeschlimann"));
        translated_by.Add (wxT ("Grégoire Ausina"));
+       translated_by.Add (wxT ("Tomáš Begeni"));
        translated_by.Add (wxT ("Cherif Ben Brahim"));
        translated_by.Add (wxT ("Massimiliano Broggi"));
        translated_by.Add (wxT ("Davide Dall'AraCiao"));
@@ -142,6 +143,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Adam Colt"));
        supported_by.Add (wxT ("Adam Cousins"));
        supported_by.Add (wxT ("Matthias Damm"));
+       supported_by.Add (wxT ("Yohann Dedy"));
        supported_by.Add (wxT ("Alexey Derevyanko"));
        supported_by.Add (wxT ("Thomas Dickens"));
        supported_by.Add (wxT ("Unwana Essien"));
@@ -161,6 +163,7 @@ 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"));
@@ -172,6 +175,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Filip Kovcin"));
        supported_by.Add (wxT ("Cihan Kulaber"));
        supported_by.Add (wxT ("Carsten Kurz"));
+       supported_by.Add (wxT ("Gerard Manshanden"));
        supported_by.Add (wxT ("Daniel Martinez Lara"));
        supported_by.Add (wxT ("Lilian Lefranc"));
        supported_by.Add (wxT ("Sean Leigh"));
@@ -301,7 +305,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;