diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-10-12 03:09:29 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-10-15 01:35:59 +0200 |
commit | ee3fa19ed90e55d257d8b73fdf9cbcb14accd35a (patch) | |
tree | a0ffa904248d9a58b1fa48adc970e34cf9f0bac4 /src/Mount | |
parent | f274f5bdc52b5b2b53d7526d26be8c30c9f97453 (diff) | |
download | VeraCrypt-ee3fa19ed90e55d257d8b73fdf9cbcb14accd35a.tar.gz VeraCrypt-ee3fa19ed90e55d257d8b73fdf9cbcb14accd35a.zip |
Windows: correct wrong ID for keyfiles button in password dialog
Diffstat (limited to 'src/Mount')
-rw-r--r-- | src/Mount/Mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 30be6f0d..e45b7d06 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -2754,7 +2754,7 @@ BOOL CALLBACK PasswordDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa SetCheckBox (hwndDlg, IDC_KEYFILES_ENABLE, FALSE);
EnableWindow (GetDlgItem (hwndDlg, IDC_KEYFILES_ENABLE), FALSE);
- EnableWindow (GetDlgItem (hwndDlg, IDC_KEYFILES), FALSE);
+ EnableWindow (GetDlgItem (hwndDlg, IDC_KEY_FILES), FALSE);
SetPim (hwndDlg, IDC_PIM, *pim);
|