summaryrefslogtreecommitdiff
path: root/src
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 /src
parent89ad6c484689ca399d0960803df75374b7a63490 (diff)
Fix non-update of timeline when reels setup changes.
Diffstat (limited to 'src')
-rw-r--r--src/wx/timeline.cc2
1 files changed, 1 insertions, 1 deletions
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 ();
}