From edac93e1153f3d42d7dedff5a3d35b64b2a4ecef Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Wed, 24 Aug 2016 15:30:27 +0200 Subject: [PATCH] Custom TLS identity is correctly enabled/disabled now. --- lib/TLS_UI/src/TLS_UI.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/TLS_UI/src/TLS_UI.cpp b/lib/TLS_UI/src/TLS_UI.cpp index 5aea833..e007e6f 100644 --- a/lib/TLS_UI/src/TLS_UI.cpp +++ b/lib/TLS_UI/src/TLS_UI.cpp @@ -397,9 +397,11 @@ void wxTLSCredentialsPanel::OnUpdateUI(wxUpdateUIEvent& event) m_cert_select->Enable(false); } m_cert_select_val->Enable(false); + m_identity->Enable(false); } else { // Configuration mode or using own credentials. Selectively enable/disable controls. m_cert_select_val->Enable(m_cert_select->GetValue()); + m_identity->Enable(true); } wxEAPCredentialsPanelBase::OnUpdateUI(event);