diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-09 16:26:23 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-09 16:26:23 +0000 |
| commit | 998626b62ac3ab26ee35141723bf253a24405178 (patch) | |
| tree | aeb450d16f8210f6a3c7aadbeb3d7eac6855ae96 /src | |
| parent | 3e737b2dadd977dc125eba88b32864cdc8f08af1 (diff) | |
Layout tweaks.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/audio_panel.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc index c449121f1..41313e342 100644 --- a/src/wx/audio_panel.cc +++ b/src/wx/audio_panel.cc @@ -73,7 +73,7 @@ AudioPanel::AudioPanel (FilmEditor* e) boost::mem_fn (&AudioContent::set_audio_delay) ); - _delay->add (grid, wxGBPosition (r,1 )); + _delay->add (grid, wxGBPosition (r, 1)); /// TRANSLATORS: this is an abbreviation for milliseconds, the unit of time add_label_to_grid_bag_sizer (grid, this, _("ms"), false, wxGBPosition (r, 2)); ++r; @@ -81,10 +81,7 @@ AudioPanel::AudioPanel (FilmEditor* e) add_label_to_grid_bag_sizer (grid, this, _("Audio Stream"), true, wxGBPosition (r, 0)); _stream = new wxChoice (this, wxID_ANY); grid->Add (_stream, wxGBPosition (r, 1)); - ++r; - - _description = new wxStaticText (this, wxID_ANY, wxT ("")); - grid->Add (_description, wxGBPosition (r, 0)); + _description = add_label_to_grid_bag_sizer (grid, this, "", false, wxGBPosition (r, 3)); ++r; _mapping = new AudioMappingView (this); |
