diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-08-07 00:56:56 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-08-07 00:58:49 +0200 |
commit | 41ba7a06d3ac55752f9f50a1454eacdda62b1ae4 (patch) | |
tree | 8fa26f832d959bf2c5f7a88f8abe1d845136467c /src/Format | |
parent | 88a6e7fd1198fe828d0f2f8ac5a9bbb7e9bfd4a8 (diff) | |
download | VeraCrypt-41ba7a06d3ac55752f9f50a1454eacdda62b1ae4.tar.gz VeraCrypt-41ba7a06d3ac55752f9f50a1454eacdda62b1ae4.zip |
Windows: Display a balloon tip warning or error message when the value pasted to password field is truncated or when there is no room for additional characters because of maximum password length reached
Diffstat (limited to 'src/Format')
-rw-r--r-- | src/Format/Tcformat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c index c496a72b..54379715 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -4265,7 +4265,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa /* make autodetection the default */ SendMessage (hComboBox, CB_SETCURSEL, 0, 0); - SendMessage (GetDlgItem (hwndDlg, IDC_PASSWORD_DIRECT), EM_LIMITTEXT, MAX_PASSWORD, 0); + ToNormalPwdField (hwndDlg, IDC_PASSWORD_DIRECT); SetPassword (hwndDlg, IDC_PASSWORD_DIRECT, szRawPassword); @@ -4345,8 +4345,8 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa StringCbCopyW (str, sizeof(str), GetString ("PASSWORD_HELP")); } - SendMessage (GetDlgItem (hwndDlg, IDC_PASSWORD), EM_LIMITTEXT, MAX_PASSWORD, 0); - SendMessage (GetDlgItem (hwndDlg, IDC_VERIFY), EM_LIMITTEXT, MAX_PASSWORD, 0); + ToNormalPwdField (hwndDlg, IDC_PASSWORD); + ToNormalPwdField (hwndDlg, IDC_VERIFY); SetPassword (hwndDlg, IDC_PASSWORD, szRawPassword); SetPassword (hwndDlg, IDC_VERIFY, szVerify); |