Remove File menu on macOS (it has nothing in it).
authorCarl Hetherington <cth@carlh.net>
Wed, 15 Jan 2025 23:01:44 +0000 (00:01 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 15 Jan 2025 23:01:44 +0000 (00:01 +0100)
src/tools/dcpomatic_kdm.cc

index ab9d4255e9401c703c4f56e3dce2fa3609f1fd68..0c0af4a96520661acc0412a4daf59265f6f58ecd 100644 (file)
@@ -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"));