From: Carl Hetherington Date: Sun, 7 Apr 2013 13:25:18 +0000 (+0100) Subject: Make the audio plot expand in height when its window is enlarged. X-Git-Tag: v2.0.48~1337^2~347^2~108 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=4725a493ed1fc6886b36553bd4600261aa644800;p=dcpomatic.git Make the audio plot expand in height when its window is enlarged. --- diff --git a/ChangeLog b/ChangeLog index f8ddd967d..de24ad89b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-04-07 Carl Hetherington + + * Make the audio plot expand in height when its + window is enlarged. + 2013-04-01 Carl Hetherington * Version 0.79 released. 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);