diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-10 21:54:45 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-10 21:54:45 +0000 |
| commit | 0b45af42b5a30c3a71d2e1de491843d125e46793 (patch) | |
| tree | 8b7e55d9f8ab53cb115c56779bd4e1df23ba6b62 /src/tools | |
| parent | 6bfdd0f45927a4dfecf10e851b1902a899de5aa2 (diff) | |
Fixes to times for KDMs.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dvdomatic.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc index 7d7adcce8..b6662f281 100644 --- a/src/tools/dvdomatic.cc +++ b/src/tools/dvdomatic.cc @@ -337,9 +337,13 @@ public: void jobs_make_kdms (wxCommandEvent &) { + if (!film) { + return; + } + KDMDialog* d = new KDMDialog (this); if (d->ShowModal () == wxID_OK) { - _film->make_kdms ( + film->make_kdms ( d->screens (), d->from (), d->until (), |
