summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-03-21 00:17:58 +0000
committerCarl Hetherington <cth@carlh.net>2019-05-06 21:30:22 +0100
commitfe4554ee97315b1895f03c2e3dc1c9cbb1b08882 (patch)
tree2e68b68f9996c8be353e8c9d35bc6bfcb0cffbaf /src/tools
parent59ae783363bd46212998e1a5ef8a511b0dc573ea (diff)
Disable hints when there is no film.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic.cc2
1 files changed, 1 insertions, 1 deletions
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);