diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-06 16:12:49 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-06 16:12:49 +0100 |
| commit | d8d14ced78729f6f1bee8347bd0adc4e68a9f5f7 (patch) | |
| tree | 9e53a9e8546b7d7d5823b4e0a62c08cd81c96cfa /src | |
| parent | b0718baa1118bdc297c664734135c5e9964bf450 (diff) | |
Fix resizing/redraw problems on Windows.
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 39650d157..d12b5516f 100644 --- a/src/wx/audio_dialog.cc +++ b/src/wx/audio_dialog.cc @@ -29,7 +29,7 @@ using boost::bind; using boost::optional; AudioDialog::AudioDialog (wxWindow* parent) - : wxDialog (parent, wxID_ANY, _("Audio"), wxDefaultPosition, wxSize (640, 512), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) + : wxDialog (parent, wxID_ANY, _("Audio"), wxDefaultPosition, wxSize (640, 512), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE) , _plot (0) { wxBoxSizer* sizer = new wxBoxSizer (wxHORIZONTAL); |
