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_player.cc | |
| parent | 8fcadb1b9b2afc4994e03377105b92cae4eb54a1 (diff) | |
Allow branding of "report a problem" dialog.
Diffstat (limited to 'src/tools/dcpomatic_player.cc')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index b877f10cd..d3b998b55 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -617,7 +617,9 @@ private: #else help->Append (wxID_ABOUT, _("About")); #endif - help->Append (ID_help_report_a_problem, _("Report a problem...")); + if (variant::show_report_a_problem()) { + help->Append(ID_help_report_a_problem, _("Report a problem...")); + } m->Append (_file_menu, _("&File")); if (!Config::instance()->player_restricted_menus()) { |
