summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-30 22:37:03 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-30 22:37:03 +0100
commitc1bd561d0380f46fcd1cabe9816916a2742f465d (patch)
tree37ec81fa98c15c6668edd7cc5561d161eaf102e4 /src
parentc31552d0d50e6f7122d26045a09e3f23fd4c1371 (diff)
Re-examine joined content.
Diffstat (limited to 'src')
-rw-r--r--src/wx/content_menu.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc
index d5e190adf..70fc766ac 100644
--- a/src/wx/content_menu.cc
+++ b/src/wx/content_menu.cc
@@ -161,7 +161,7 @@ ContentMenu::join ()
try {
shared_ptr<FFmpegContent> joined (new FFmpegContent (film, fc));
film->remove_content (_content);
- film->add_content (joined);
+ film->examine_and_add_content (joined);
} catch (JoinError& e) {
error_dialog (_parent, std_to_wx (e.what ()));
}