diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-03-17 14:04:50 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-03-17 14:09:55 +0100 |
commit | 8bfc7f1caa33593aba8ac0f9450be3ead04f907b (patch) | |
tree | 63604002d2d6e1563fb268beddb8eb109533793c /src | |
parent | 8580464e512e62738dbd9dbbe1b4b39e4ac8dfea (diff) | |
download | VeraCrypt-8bfc7f1caa33593aba8ac0f9450be3ead04f907b.tar.gz VeraCrypt-8bfc7f1caa33593aba8ac0f9450be3ead04f907b.zip |
Windows: Correctly disable/enable the "Display PIM" checkbox in the favorites configuration dialog
Diffstat (limited to 'src')
-rw-r--r-- | src/Mount/Favorites.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Mount/Favorites.cpp b/src/Mount/Favorites.cpp index c0c01c24..74354ced 100644 --- a/src/Mount/Favorites.cpp +++ b/src/Mount/Favorites.cpp @@ -841,6 +841,7 @@ namespace VeraCrypt EnableWindow (GetDlgItem (hwndDlg, IDC_FAVORITE_REMOVE), enable);
EnableWindow (GetDlgItem (hwndDlg, IDT_PIM), enable);
EnableWindow (GetDlgItem (hwndDlg, IDC_PIM), enable);
+ EnableWindow (GetDlgItem (hwndDlg, IDC_SHOW_PIM), enable);
EnableWindow (GetDlgItem (hwndDlg, IDC_PIM_HELP), enable);
EnableWindow (GetDlgItem (hwndDlg, IDT_FAVORITE_LABEL), enable);
EnableWindow (GetDlgItem (hwndDlg, IDC_FAVORITE_LABEL), enable);
|