diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-26 17:58:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-26 17:58:06 +0100 |
| commit | c8b10d5eac6006b62d2a7add9da0c6206b72899b (patch) | |
| tree | 1dfdac2193d23f4399acb0d12fea4f282e919bc9 /src/tools | |
| parent | 573e3f56af070750a755940203cd971c12928bc3 (diff) | |
Background-threaded hints including line length of CCAPs.
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 (); |
