summaryrefslogtreecommitdiff
path: root/src/wx/playlist_controls.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-01-20 00:31:32 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-20 20:36:46 +0100
commit385635f00d39822389adbc99a2d5bdd992f16432 (patch)
tree284ad0ac65988eb102f0f6334701496213cfd7a7 /src/wx/playlist_controls.cc
parent0b66748421b751b1863ce86f98ab449c8e8e87fc (diff)
Pass tolerant flag into Content::examine() and the ExamineContentJob.
Along the way this helps to fix #2942.
Diffstat (limited to 'src/wx/playlist_controls.cc')
-rw-r--r--src/wx/playlist_controls.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/playlist_controls.cc b/src/wx/playlist_controls.cc
index 0e1977a67..917edfd23 100644
--- a/src/wx/playlist_controls.cc
+++ b/src/wx/playlist_controls.cc
@@ -342,7 +342,7 @@ PlaylistControls::select_playlist (int selected, int position)
if (kdm) {
try {
dcp->add_kdm (*kdm);
- dcp->examine (_film, shared_ptr<Job>());
+ dcp->examine(_film, shared_ptr<Job>(), true);
} catch (KDMError& e) {
error_dialog(this, _("Could not load KDM."));
}