summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-17 00:21:26 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-17 00:21:26 +0100
commit55861a0b4ad4270f80b8d1ae10230cf2ebb25735 (patch)
treebc637b891ffce5070ee6b807796d0e7e839bc8fa /src/wx/kdm_dialog.cc
parentfdcce9bdc44b246151ffe1aa6250f456e41d9c3d (diff)
Make KDM output options checkboxes rather than radios (part of #848).
Diffstat (limited to 'src/wx/kdm_dialog.cc')
-rw-r--r--src/wx/kdm_dialog.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc
index ef7912ee3..b5ebd1e96 100644
--- a/src/wx/kdm_dialog.cc
+++ b/src/wx/kdm_dialog.cc
@@ -55,7 +55,7 @@ KDMDialog::KDMDialog (wxWindow* parent, shared_ptr<const Film> film)
wxBoxSizer* left = new wxBoxSizer (wxVERTICAL);
wxBoxSizer* right = new wxBoxSizer (wxVERTICAL);
- horizontal->Add (left, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP * 2);
+ horizontal->Add (left, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP * 4);
horizontal->Add (right, 1, wxEXPAND);
/* Font for sub-headings */
@@ -145,7 +145,9 @@ KDMDialog::make_clicked ()
_output->name_format(),
name_values
);
- } else {
+ }
+
+ if (_output->email ()) {
JobManager::instance()->add (
shared_ptr<Job> (new SendKDMEmailJob (
CinemaKDMs::collect (screen_kdms),