projects
/
dcpomatic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8deb46
)
Remove File menu on macOS (it has nothing in it).
author
Carl Hetherington
<cth@carlh.net>
Wed, 15 Jan 2025 23:01:44 +0000
(
00:01
+0100)
committer
Carl Hetherington
<cth@carlh.net>
Wed, 15 Jan 2025 23:01:44 +0000
(
00:01
+0100)
src/tools/dcpomatic_kdm.cc
patch
|
blob
|
history
diff --git
a/src/tools/dcpomatic_kdm.cc
b/src/tools/dcpomatic_kdm.cc
index ab9d4255e9401c703c4f56e3dce2fa3609f1fd68..0c0af4a96520661acc0412a4daf59265f6f58ecd 100644
(file)
--- 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"));