mirror of https://github.com/OpenVPN/openvpn-gui
set focus to challenge when password already filled
parent
5ab2a48ba0
commit
68aa1df4c7
|
@ -470,6 +470,10 @@ UserAuthDialogFunc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
SendMessage(GetDlgItem(hwndDlg, ID_EDT_AUTH_PASS), EM_SETSEL, 0, MAKELONG(0,-1));
|
SendMessage(GetDlgItem(hwndDlg, ID_EDT_AUTH_PASS), EM_SETSEL, 0, MAKELONG(0,-1));
|
||||||
}
|
}
|
||||||
|
else if (param->flags & FLAG_CR_TYPE_SCRV1)
|
||||||
|
{
|
||||||
|
SetFocus(GetDlgItem(hwndDlg, ID_EDT_AUTH_CHALLENGE));
|
||||||
|
}
|
||||||
SecureZeroMemory(password, sizeof(password));
|
SecureZeroMemory(password, sizeof(password));
|
||||||
}
|
}
|
||||||
if (param->c->flags & FLAG_DISABLE_SAVE_PASS)
|
if (param->c->flags & FLAG_DISABLE_SAVE_PASS)
|
||||||
|
|
Loading…
Reference in New Issue