From 9920ca2d0d279b87f7bdeede6248699e1570e5c2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 29 Dec 2017 19:49:36 +0000 Subject: [PATCH] Fix sensitivity of stuff in KDM output panel. --- src/wx/kdm_output_panel.cc | 4 ++-- 1 file 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); } -- 2.30.2