From 04b8960f330d395409755d5d63aa40a60a797687 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 9 Jun 2016 15:42:48 +0200 Subject: [PATCH] User name is initially selected now for consistent experience with general UI guidelines --- EAPMethods/src/EAP_UI.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/EAPMethods/src/EAP_UI.cpp b/EAPMethods/src/EAP_UI.cpp index 2015d42..8ea8ae2 100644 --- a/EAPMethods/src/EAP_UI.cpp +++ b/EAPMethods/src/EAP_UI.cpp @@ -85,6 +85,7 @@ bool wxPasswordCredentialsPanel::TransferDataToWindow() wxCHECK(__super::TransferDataToWindow(), false); m_identity->SetValue(m_cred.m_identity); + m_identity->SetSelection(0, -1); m_password->SetValue(m_cred.m_password.empty() ? wxEmptyString : s_dummy_password); return true;