summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-12-29 19:49:36 +0000
committerCarl Hetherington <cth@carlh.net>2017-12-29 19:49:36 +0000
commit9920ca2d0d279b87f7bdeede6248699e1570e5c2 (patch)
tree4b87ee4fb91ee7b442443d602ad5f5d8e09a375b /src
parent9a8d2218b82f06f6d161e8f1d93a58afe752c63a (diff)
Fix sensitivity of stuff in KDM output panel.
Diffstat (limited to 'src')
-rw-r--r--src/wx/kdm_output_panel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/kdm_output_panel.cc b/src/wx/kdm_output_panel.cc
index 6cd1af268..29b697b89 100644
--- a/src/wx/kdm_output_panel.cc
+++ b/src/wx/kdm_output_panel.cc
@@ -134,8 +134,8 @@ KDMOutputPanel::KDMOutputPanel (wxWindow* parent, bool interop)
_write_to->SetValue (true);
- _write_to->Bind (wxEVT_RADIOBUTTON, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
- _email->Bind (wxEVT_RADIOBUTTON, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
+ _write_to->Bind (wxEVT_CHECKBOX, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
+ _email->Bind (wxEVT_CHECKBOX, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
SetSizer (table);
}