diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-21 00:17:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-08 23:25:22 +0100 |
| commit | 2a9191de7742aed3147f41b0b892c2d466ad3da1 (patch) | |
| tree | b770844419c1f9ca3e099b12fb496beb306d2d2d | |
| parent | 2e3146997511cb1c15f7c5def56d136987fb939d (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 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); |
