Use wxChoice instead of wxComboBox throughout. Fixes dcp content type hanging over...
[dcpomatic.git] / src / wx / config_dialog.cc
index 8886fa160f1fcb76b9d985c6527df7a81276a4f8..99527ffe7ba999c793ae97a025d445d127a4f9a6 100644 (file)
@@ -86,7 +86,7 @@ ConfigDialog::ConfigDialog (wxWindow* parent)
        table->AddSpacer (1);
 
        add_label_to_sizer (table, this, "Reference scaler for A/B");
-       _reference_scaler = new wxComboBox (this, wxID_ANY);
+       _reference_scaler = new wxChoice (this, wxID_ANY);
        vector<Scaler const *> const sc = Scaler::all ();
        for (vector<Scaler const *>::const_iterator i = sc.begin(); i != sc.end(); ++i) {
                _reference_scaler->Append (std_to_wx ((*i)->name ()));