diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-06 15:41:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-06 15:41:51 +0100 |
| commit | fdf7a3a9d7dbac9fe41a2e96b47f1d053b7b0f76 (patch) | |
| tree | eb7ab3e4d6e58e02aa2677c7f7a51fd05f8687a1 /src/wx/audio_dialog.cc | |
| parent | 84be56b8107b812f16b6b244f8184c0983eaed6f (diff) | |
Try to fix lack of redraw on resize on Windows; also corrupted background to checkbox in AudioMappingView.
Diffstat (limited to 'src/wx/audio_dialog.cc')
| -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 15d746839..d1d13ab78 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); |
