diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-12 22:38:12 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-12 22:38:12 +0100 |
| commit | 2efd23edadea3db321ea1290638d604f3496c94f (patch) | |
| tree | 9bf59a50e1549d24ce246c9baecd453c15c0a111 /src | |
| parent | f9b23b0d8aab711e5a19b8cd0e737fca376724be (diff) | |
Update reels markers properly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/timeline.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index a8c157833..02f8be059 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -249,6 +249,8 @@ Timeline::film_content_changed (int property, bool frequent) if (property == AudioContentProperty::STREAMS) { recreate_views (); + } else if (property == ContentProperty::POSITION || property == ContentProperty::LENGTH) { + _reels_view->force_redraw (); } else if (!frequent) { setup_scrollbars (); Refresh (); |
