summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-11-24 11:31:22 +0100
committerCarl Hetherington <cth@carlh.net>2023-11-24 11:31:22 +0100
commita231f5ec72af46a4f747b1be7249ee8549f6b7fb (patch)
tree39206490271b116810a7c9adb46d59fd88e7e22a
parent1e38cddacb538ed44bac383cb3d8c2a69b5d3a29 (diff)
Fix debug assertion when adding a KDM.
-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 b9214e6a7..c0479ac83 100644
--- a/src/wx/content_menu.cc
+++ b/src/wx/content_menu.cc
@@ -403,7 +403,7 @@ ContentMenu::kdm ()
auto dcp = dynamic_pointer_cast<DCPContent> (_content.front());
DCPOMATIC_ASSERT (dcp);
- FileDialog dialog(_parent, _("Select KDM"), wxT("XML files|*.xml|All files|*.*"), wxFD_MULTIPLE, "AddKDMPath");
+ FileDialog dialog(_parent, _("Select KDM"), wxT("XML files|*.xml|All files|*.*"), 0, "AddKDMPath");
if (!dialog.show()) {
return;