diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-12-12 00:11:58 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-12-12 00:13:01 +0100 |
commit | 2a93826497f10540034a430add272c1d71a25eba (patch) | |
tree | a3ebd3dd1abfed6e895b36732492a2e67d3883c3 | |
parent | 0c6447cae4e9415c3b0057f8edc89234f5751248 (diff) | |
download | VeraCrypt-2a93826497f10540034a430add272c1d71a25eba.tar.gz VeraCrypt-2a93826497f10540034a430add272c1d71a25eba.zip |
Windows: Fix the checkbox for skipping verification of Rescue Disk not reflecting the value of /noisocheck switch when specified in VeraCrypt Format command line.
-rw-r--r-- | src/Format/Tcformat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c index 002b6c5c..f886e0bc 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -4562,6 +4562,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), GetString ("NEXT")); SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_PREV), GetString ("PREV")); SetWindowTextW (GetDlgItem (hwndDlg, IDT_RESCUE_DISK_INFO), bSystemIsGPT? GetString ("RESCUE_DISK_EFI_INFO"): GetString ("RESCUE_DISK_INFO")); + SetCheckBox (hwndDlg, IDC_SKIP_RESCUE_VERIFICATION, bDontVerifyRescueDisk); SetDlgItemText (hwndDlg, IDC_RESCUE_DISK_ISO_PATH, szRescueDiskISO); EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), (GetWindowTextLength (GetDlgItem (hwndDlg, IDC_RESCUE_DISK_ISO_PATH)) > 1)); EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_PREV), TRUE); |