diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-08-08 00:10:07 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-08-08 00:34:17 +0200 |
commit | aac203673858e9d16974fb1f8a0a72c3b3eaec14 (patch) | |
tree | d8e1f3b324a91bc96a1581a38f237d44406f8320 /src/Main/Forms/Forms.cpp | |
parent | 41ba7a06d3ac55752f9f50a1454eacdda62b1ae4 (diff) | |
download | VeraCrypt-aac203673858e9d16974fb1f8a0a72c3b3eaec14.tar.gz VeraCrypt-aac203673858e9d16974fb1f8a0a72c3b3eaec14.zip |
Linux/MacOSX/FreeBSD: Add CheckBox in mount option dialog to force the use of embedded backup header during mount.
Diffstat (limited to 'src/Main/Forms/Forms.cpp')
-rw-r--r-- | src/Main/Forms/Forms.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Main/Forms/Forms.cpp b/src/Main/Forms/Forms.cpp index 3b6dc2cc..2df4f3ae 100644 --- a/src/Main/Forms/Forms.cpp +++ b/src/Main/Forms/Forms.cpp @@ -1567,6 +1567,9 @@ MountOptionsDialogBase::MountOptionsDialogBase( wxWindow* parent, wxWindowID id, RemovableCheckBox = new wxCheckBox( OptionsPanel, wxID_ANY, _("Mount volume as removable &medium"), wxDefaultPosition, wxDefaultSize, 0 ); OptionsSizer->Add( RemovableCheckBox, 0, wxALL, 5 ); + BackupHeaderCheckBox = new wxCheckBox( OptionsPanel, wxID_ANY, _("Use backup header embedded in &volume if available"), wxDefaultPosition, wxDefaultSize, 0 ); + OptionsSizer->Add( BackupHeaderCheckBox, 0, wxALL, 5 ); + PartitionInSystemEncryptionScopeCheckBox = new wxCheckBox( OptionsPanel, wxID_ANY, _("Mount partition &using system encryption (preboot authentication)"), wxDefaultPosition, wxDefaultSize, 0 ); OptionsSizer->Add( PartitionInSystemEncryptionScopeCheckBox, 0, wxALL, 5 ); |