summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--src/wx/video_waveform_dialog.cc9
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8251f6117..8f457e91c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);