diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-07 14:25:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-07 14:25:18 +0100 |
| commit | 4725a493ed1fc6886b36553bd4600261aa644800 (patch) | |
| tree | abda8513e8f706c15bd167b2dadb3dad5bc1e8dc /src | |
| parent | 26a7e35765ae09606ce16365acd5d9a7f2876a3f (diff) | |
Make the audio plot expand in height when its window is enlarged.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/audio_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/audio_dialog.cc b/src/wx/audio_dialog.cc index 3d17988b6..39650d157 100644 --- a/src/wx/audio_dialog.cc +++ b/src/wx/audio_dialog.cc @@ -35,7 +35,7 @@ AudioDialog::AudioDialog (wxWindow* parent) wxBoxSizer* sizer = new wxBoxSizer (wxHORIZONTAL); _plot = new AudioPlot (this); - sizer->Add (_plot, 1, wxALL, 12); + sizer->Add (_plot, 1, wxALL | wxEXPAND, 12); wxBoxSizer* side = new wxBoxSizer (wxVERTICAL); |
