diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-29 22:03:37 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-29 22:14:25 +0200 |
| commit | 48c75fff036cb6960fc4c86317231914588a668d (patch) | |
| tree | 8c28c39d1a985cb27aa3c2a80a2a0b394013c83b /src/wx/controls.cc | |
| parent | fc18b92ca1cc8d7ec975fddc507fb97aacc6d17f (diff) | |
Add hinting to the seek dialogue; may be a nice fix for #1736.
Diffstat (limited to 'src/wx/controls.cc')
| -rw-r--r-- | src/wx/controls.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/controls.cc b/src/wx/controls.cc index ec6d4ff4c..022ebfe29 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -345,7 +345,7 @@ Controls::setup_sensitivity () void Controls::timecode_clicked () { - PlayheadToTimecodeDialog* dialog = new PlayheadToTimecodeDialog (this, _film->video_frame_rate ()); + PlayheadToTimecodeDialog* dialog = new PlayheadToTimecodeDialog (this, _viewer->position(), _film->video_frame_rate()); if (dialog->ShowModal() == wxID_OK) { _viewer->seek (dialog->get(), true); } |
