diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-27 21:34:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-27 21:34:01 +0100 |
| commit | e5ccfb7ec74aa8a25371a85c0a013a285884e41f (patch) | |
| tree | 010fc40320a68c67610f547c1aad08c8d6cc7abc | |
| parent | 4773efba08ed70d75cd2b1f1cdbc7fb6e065d355 (diff) | |
Try to keep video waveform dialogue on top (#820).
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | src/wx/video_waveform_dialog.cc | 9 |
2 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2016-05-27 Carl Hetherington <cth@carlh.net> + * Try to keep video waveform dialogue on top at all times (#820). + * Updated uk_UA translation from Igor Voytovich. * Updated ru_RU translation from Igor Voytovich. 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); |
