diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/wx/timeline.cc | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2015-10-30 c.hetherington <cth@carlh.net> + + * Fix non-update of timeline when reels setup changes (#735). + 2015-10-29 Carl Hetherington <cth@carlh.net> * Version 2.4.15 released. diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index e2cc1a249..952945884 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -98,7 +98,7 @@ Timeline::paint () void Timeline::film_changed (Film::Property p) { - if (p == Film::CONTENT) { + if (p == Film::CONTENT || p == Film::REEL_TYPE || p == Film::REEL_LENGTH) { ensure_ui_thread (); recreate_views (); } |
