summaryrefslogtreecommitdiff
path: root/src/wx/timeline_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-06 15:41:51 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-06 15:41:51 +0100
commitfdf7a3a9d7dbac9fe41a2e96b47f1d053b7b0f76 (patch)
treeeb7ab3e4d6e58e02aa2677c7f7a51fd05f8687a1 /src/wx/timeline_dialog.cc
parent84be56b8107b812f16b6b244f8184c0983eaed6f (diff)
Try to fix lack of redraw on resize on Windows; also corrupted background to checkbox in AudioMappingView.
Diffstat (limited to 'src/wx/timeline_dialog.cc')
-rw-r--r--src/wx/timeline_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timeline_dialog.cc b/src/wx/timeline_dialog.cc
index 5633c29e7..7a75044c9 100644
--- a/src/wx/timeline_dialog.cc
+++ b/src/wx/timeline_dialog.cc
@@ -28,7 +28,7 @@ using std::cout;
using boost::shared_ptr;
TimelineDialog::TimelineDialog (wxWindow* parent, shared_ptr<Playlist> pl)
- : wxDialog (parent, wxID_ANY, _("Timeline"), wxDefaultPosition, wxSize (640, 512), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
+ : wxDialog (parent, wxID_ANY, _("Timeline"), wxDefaultPosition, wxSize (640, 512), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE)
, _timeline (this, pl)
{
wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);