diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-27 16:14:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-27 16:14:41 +0100 |
| commit | ae4f0d9f55489ddc50b3e5f0d713621ee8f50645 (patch) | |
| tree | 05adaa258ecce8029f754a58c847ac3904239400 /src/tools | |
| parent | 3009a585f5222a83213c786e3c564c740f450d18 (diff) | |
| parent | 3006dde72c92356165ef841910368d0dae27ddbe (diff) | |
Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index a97e12b69..6972b35c4 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -636,7 +636,7 @@ private: } } - if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) { + if (Config::instance()->show_hints_before_make_dcp()) { HintsDialog* hints = new HintsDialog (this, _film, false); int const r = hints->ShowModal(); hints->Destroy (); @@ -735,7 +735,7 @@ private: return; } - if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) { + if (Config::instance()->show_hints_before_make_dcp()) { HintsDialog* hints = new HintsDialog (this, _film, false); int const r = hints->ShowModal(); hints->Destroy (); |
