diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-26 22:34:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-26 22:34:35 +0200 |
| commit | d40d196a777666206f39094c39956bb654b9b64c (patch) | |
| tree | ca98806117ac68198554897e0dd51a68eef41915 /src/tools/dcpomatic.cc | |
| parent | 8fcadb1b9b2afc4994e03377105b92cae4eb54a1 (diff) | |
Allow branding of "report a problem" dialog.
Diffstat (limited to 'src/tools/dcpomatic.cc')
| -rw-r--r-- | src/tools/dcpomatic.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index a1b2cf750..1c43d8a07 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1454,7 +1454,9 @@ private: #else add_item (help, _("About"), wxID_ABOUT, ALWAYS); #endif - add_item (help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM); + if (variant::show_report_a_problem()) { + add_item(help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM); + } m->Append (_file_menu, _("&File")); m->Append (edit, _("&Edit")); |
