Remove erroneous wxFD_MULTIPLE flag.
authorCarl Hetherington <cth@carlh.net>
Sun, 7 Feb 2021 20:37:23 +0000 (21:37 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 7 Feb 2021 20:37:23 +0000 (21:37 +0100)
src/wx/content_menu.cc

index e7ce3cc9c92a34fca9422267ff5a5e59be04d2e0..6c635db0b02c7ac6e5c29de9cea8aa95433aad1e 100644 (file)
@@ -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 ();