summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/film.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 0000dca10..bd5724828 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -957,9 +957,8 @@ Film::signal_change (ChangeType type, Property p)
if (p == Film::VIDEO_FRAME_RATE || p == Film::SEQUENCE) {
/* We want to call Playlist::maybe_sequence but this must happen after the
main signal emission (since the butler will see that emission and un-suspend itself).
- Doing it this way ensures that the Change signal above is emitted first.
*/
- signal_manager->when_idle (boost::bind(&Playlist::maybe_sequence, _playlist.get()));
+ emit (boost::bind(&Playlist::maybe_sequence, _playlist.get()));
}
} else {
Change (type, p);