diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-21 00:17:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-04-08 00:22:40 +0100 |
| commit | f84cd375101857542a45b67222005e867ee3aa86 (patch) | |
| tree | be1d8cc05bc1fa2fe6b8e477a70cca673ea08550 | |
| parent | ef2be1b08cb1cec5159efd8d3b833c9ea75c9b0e (diff) | |
Disable hints when there is no film.
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 1db6b2d0f..7d3723cb2 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1262,7 +1262,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); |
