From: drowe67 Date: Tue, 11 Jul 2017 07:56:35 +0000 (+0000) Subject: fixed radio button grouping issue X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=fdb54aad7aafcec8dca8a3c375a3d0566538c9a1;p=freetel-svn-tracking.git fixed radio button grouping issue git-svn-id: https://svn.code.sf.net/p/freetel/code@3293 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/freedv-dev/src/topFrame.cpp b/freedv-dev/src/topFrame.cpp index ee10bba5..a5b574a1 100644 --- a/freedv-dev/src/topFrame.cpp +++ b/freedv-dev/src/topFrame.cpp @@ -321,7 +321,7 @@ TopFrame::TopFrame(wxString plugInName, wxWindow* parent, wxWindowID id, const w m_rb700b = new wxRadioButton( this, wxID_ANY, wxT("700B"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP); sbSizer_mode->Add(m_rb700b, 0, wxALIGN_LEFT|wxALL, 1); #endif - m_rb700c = new wxRadioButton( this, wxID_ANY, wxT("700C"), wxDefaultPosition, wxDefaultSize, 0); + m_rb700c = new wxRadioButton( this, wxID_ANY, wxT("700C"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP); sbSizer_mode->Add(m_rb700c, 0, wxALIGN_LEFT|wxALL, 1); m_rb800xa = new wxRadioButton( this, wxID_ANY, wxT("800XA"), wxDefaultPosition, wxDefaultSize, 0); sbSizer_mode->Add(m_rb800xa, 0, wxALIGN_LEFT|wxALL, 1);