diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-17 00:21:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-17 00:21:26 +0100 |
| commit | 55861a0b4ad4270f80b8d1ae10230cf2ebb25735 (patch) | |
| tree | bc637b891ffce5070ee6b807796d0e7e839bc8fa /src/wx/kdm_output_panel.h | |
| parent | fdcce9bdc44b246151ffe1aa6250f456e41d9c3d (diff) | |
Make KDM output options checkboxes rather than radios (part of #848).
Diffstat (limited to 'src/wx/kdm_output_panel.h')
| -rw-r--r-- | src/wx/kdm_output_panel.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/kdm_output_panel.h b/src/wx/kdm_output_panel.h index efc9c0c93..98e2622a9 100644 --- a/src/wx/kdm_output_panel.h +++ b/src/wx/kdm_output_panel.h @@ -34,6 +34,7 @@ public: boost::filesystem::path directory () const; bool write_to () const; + bool email () const; dcp::Formulation formulation () const; dcp::NameFormat name_format () const; @@ -43,11 +44,11 @@ public: private: wxChoice* _type; NameFormatEditor* _filename_format; - wxRadioButton* _write_to; + wxCheckBox* _write_to; #ifdef DCPOMATIC_USE_OWN_PICKER DirPickerCtrl* _folder; #else wxDirPickerCtrl* _folder; #endif - wxRadioButton* _email; + wxCheckBox* _email; }; |
