diff options
Diffstat (limited to 'src/wx/kdm_dialog.cc')
| -rw-r--r-- | src/wx/kdm_dialog.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc index 6164f7fd9..02b91a1e2 100644 --- a/src/wx/kdm_dialog.cc +++ b/src/wx/kdm_dialog.cc @@ -276,7 +276,9 @@ KDMDialog::add_screen_clicked () shared_ptr<Cinema> c = selected_cinemas().front().second; ScreenDialog* d = new ScreenDialog (this, "Add Screen"); - d->ShowModal (); + if (d->ShowModal () != wxID_OK) { + return; + } shared_ptr<Screen> s (new Screen (d->name(), d->certificate())); c->add_screen (s); |
