From 4c4181742f5bf238f07a7cfd1fe60ec475f4c32a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 7 Feb 2021 21:37:23 +0100 Subject: [PATCH] Remove erroneous wxFD_MULTIPLE flag. --- src/wx/content_menu.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index e7ce3cc9c..6c635db0b 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -336,7 +336,7 @@ ContentMenu::find_missing () path = wx_to_std (d->GetPath ()); d->Destroy (); } else { - auto d = new wxFileDialog (0, _("Choose a file"), wxT (""), wxT (""), wxT ("*.*"), wxFD_MULTIPLE); + auto d = new wxFileDialog (0, _("Choose a file"), wxT (""), wxT (""), wxT ("*.*")); r = d->ShowModal (); path = wx_to_std (d->GetPath ()); d->Destroy (); -- 2.30.2