summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-01-16 00:01:44 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-16 00:01:44 +0100
commit0da18dbf9b62b532f48a4e859f70f4ddedb6f78e (patch)
treea9fffba9e13887d2eb64eaf0d0d1d213369ad9e6 /src
parentd8deb46a9aada1df1a9a8d53b4fd00abe58de315 (diff)
Remove File menu on macOS (it has nothing in it).
Diffstat (limited to 'src')
-rw-r--r--src/tools/dcpomatic_kdm.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc
index ab9d4255e..0c0af4a96 100644
--- a/src/tools/dcpomatic_kdm.cc
+++ b/src/tools/dcpomatic_kdm.cc
@@ -304,9 +304,7 @@ private:
{
auto file = new wxMenu;
-#ifdef DCPOMATIC_OSX
- file->Append (wxID_EXIT, _("&Exit"));
-#else
+#ifndef DCPOMATIC_OSX
file->Append (wxID_EXIT, _("&Quit"));
#endif
@@ -327,8 +325,8 @@ private:
help->Append(ID_help_report_a_problem, _("Report a problem..."));
}
- m->Append (file, _("&File"));
#ifndef DCPOMATIC_OSX
+ m->Append (file, _("&File"));
m->Append (edit, _("&Edit"));
#endif
m->Append (help, _("&Help"));