diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-28 09:16:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-02-02 01:09:42 +0100 |
| commit | 11470012ee395f5c6a1fdc2dada7d4617fd4c715 (patch) | |
| tree | cd2ab9e528598c5d5b9facb628746a812eeca5dd | |
| parent | 2f12058c535045cecc226fe47b3d60da8851a862 (diff) | |
Add missing preferences menu option on macOS.
| -rw-r--r-- | src/tools/dcpomatic_playlist.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/dcpomatic_playlist.cc b/src/tools/dcpomatic_playlist.cc index 4dc8aef28..cb153d6c1 100644 --- a/src/tools/dcpomatic_playlist.cc +++ b/src/tools/dcpomatic_playlist.cc @@ -576,6 +576,7 @@ private: { auto file = new wxMenu; #ifdef __WXOSX__ + file->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P")); file->Append (wxID_EXIT, _("&Exit")); #else file->Append (wxID_EXIT, _("&Quit")); |
