diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/video_waveform_dialog.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/wx/video_waveform_dialog.cc b/src/wx/video_waveform_dialog.cc index 3e9a1714a..ae4b8f820 100644 --- a/src/wx/video_waveform_dialog.cc +++ b/src/wx/video_waveform_dialog.cc @@ -29,7 +29,14 @@ using std::cout; using boost::bind; VideoWaveformDialog::VideoWaveformDialog (wxWindow* parent, FilmViewer* viewer) - : wxDialog (parent, wxID_ANY, _("Video Waveform"), wxDefaultPosition, wxSize (640, 512), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE) + : wxDialog ( + parent, + wxID_ANY, + _("Video Waveform"), + wxDefaultPosition, + wxSize (640, 512), + wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE | wxSTAY_ON_TOP + ) , _viewer (viewer) { wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL); |
