diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-02-07 21:37:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-07 21:37:23 +0100 |
| commit | 4c4181742f5bf238f07a7cfd1fe60ec475f4c32a (patch) | |
| tree | f54cf837ec5a02b9fc546c80a0fa0da989229889 /src | |
| parent | 4908d834fc73201da2735cdc5dfb1f5589aa8586 (diff) | |
Remove erroneous wxFD_MULTIPLE flag.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/content_menu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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 (); |
