diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-03-28 00:39:50 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-03-28 00:39:50 +0200 |
| commit | 26c06eefbd72d8dd3467c2ad9c4294d8099f888a (patch) | |
| tree | e141154b6478ce50a64b8ec70ce265bb160c18cb | |
| parent | 34df545d56df724949f9974dbc20bd2857a2650a (diff) | |
Fix strange behaviour of player export frame dialog (#2493).2493-player-export-frame
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 1808e86fe..68460fe68 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -711,7 +711,7 @@ private: void file_save_frame () { - wxFileDialog dialog (this, _("Save frame to file"), "", "", "PNG files (*.png)|*.png|JPEG files (*.jpg,*.jpeg)|*.jpg,*.jpeg", wxFD_SAVE | wxFD_OVERWRITE_PROMPT); + wxFileDialog dialog (this, _("Save frame to file"), "", "", "PNG files (*.png)|*.png|JPEG files (*.jpg;*.jpeg)|*.jpg;*.jpeg", wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (dialog.ShowModal() == wxID_CANCEL) { return; } |
