summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/wx/timeline.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8c2f12266..3c28aaa5d 100644
--- 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.
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 ();
}