From: Carl Hetherington Date: Thu, 21 Mar 2019 00:17:58 +0000 (+0000) Subject: Disable hints when there is no film. X-Git-Tag: v2.15.1~42 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=10da1716a686564be08eb5c7d1682899c06649ff Disable hints when there is no film. --- diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 3fb291fc4..5bd22041e 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1270,7 +1270,7 @@ private: add_item (view, _("Video waveform..."), ID_view_video_waveform, NEEDS_FILM); wxMenu* tools = new wxMenu; - add_item (tools, _("Hints..."), ID_tools_hints, 0); + add_item (tools, _("Hints..."), ID_tools_hints, NEEDS_FILM); add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0); add_item (tools, _("Manage templates..."), ID_tools_manage_templates, 0); add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);