Fix non-update of timeline when reels setup changes.
authorCarl Hetherington <cth@carlh.net>
Fri, 30 Oct 2015 11:57:19 +0000 (11:57 +0000)
committerCarl Hetherington <cth@carlh.net>
Fri, 30 Oct 2015 11:57:19 +0000 (11:57 +0000)
ChangeLog
src/wx/timeline.cc

index 8c2f1226617646f617208284e2e2d5f9fc0839a3..3c28aaa5d053e7e3f3362071a2bc6238ee808577 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index e2cc1a249e2be71754ea693db4383edd4e409ee9..952945884117cdb1dbdabb6e653a5f8a9f20484c 100644 (file)
@@ -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 ();
        }