diff options
Diffstat (limited to 'src/tools/dvdomatic.cc')
| -rw-r--r-- | src/tools/dvdomatic.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc index cfdd03a30..7d7adcce8 100644 --- a/src/tools/dvdomatic.cc +++ b/src/tools/dvdomatic.cc @@ -338,7 +338,15 @@ public: void jobs_make_kdms (wxCommandEvent &) { KDMDialog* d = new KDMDialog (this); - d->ShowModal (); + if (d->ShowModal () == wxID_OK) { + _film->make_kdms ( + d->screens (), + d->from (), + d->until (), + d->directory () + ); + } + d->Destroy (); } |
