summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tools/dcpomatic_kdm.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc
index af69aca3c..e65a63744 100644
--- a/src/tools/dcpomatic_kdm.cc
+++ b/src/tools/dcpomatic_kdm.cc
@@ -311,15 +311,17 @@ private:
file->Append (wxID_EXIT, _("&Quit"));
#endif
-#ifdef DCPOMATIC_OSX
- file->Append(wxID_PREFERENCES, _("&Preferences...\tCtrl-,"));
-#else
+#ifndef DCPOMATIC_OSX
wxMenu* edit = new wxMenu;
edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
#endif
wxMenu* help = new wxMenu;
#ifdef DCPOMATIC_OSX
+ /* This will get moved to the program menu, so we just need to add it to some menu that
+ * does get used on macOS.
+ */
+ help->Append(wxID_PREFERENCES, _("&Preferences...\tCtrl-,"));
help->Append(wxID_ABOUT, variant::wx::insert_dcpomatic_kdm_creator(_("About %s")));
#else
help->Append (wxID_ABOUT, _("About"));