From: Carl Hetherington Date: Tue, 2 Jun 2015 15:14:25 +0000 (+0100) Subject: Fix startup crash. X-Git-Tag: v2.0.48~21 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=c83860a39065c9b5d767e134a4f8ed494305960f;ds=sidebyside Fix startup crash. --- diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index cf5c50977..96a7e6abc 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -655,6 +655,7 @@ DCPPanel::make_audio_panel () _audio_channels->Append (wxString::Format ("%d", i)); } grid->Add (_audio_channels, wxGBPosition (r, 1)); + ++r; add_label_to_grid_bag_sizer (grid, panel, _("Processor"), true, wxGBPosition (r, 0)); _audio_processor = new wxChoice (panel, wxID_ANY);