summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-30 11:57:19 +0000
committerCarl Hetherington <cth@carlh.net>2015-10-30 11:57:19 +0000
commit03bfb989b8257ff3dc3bccebb381f80b8cc5c00c (patch)
treeb69ce93059a622bdc54c8ba7718a1fb84c2ed610
parent89ad6c484689ca399d0960803df75374b7a63490 (diff)
Fix non-update of timeline when reels setup changes.
-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 ();
}