diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-02-19 22:33:47 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-02-19 22:35:34 +0100 |
commit | c145b337cbc5d7c8dc09859d51093a6727005ef8 (patch) | |
tree | 0e6dfccfa2cdcd3c5f1cd1e2055bb8f0acdc6ca2 /src/Main/Forms/MountOptionsDialog.cpp | |
parent | c68e982f39af58d4ab26d8bb9f703496ccb06043 (diff) | |
download | VeraCrypt-c145b337cbc5d7c8dc09859d51093a6727005ef8.tar.gz VeraCrypt-c145b337cbc5d7c8dc09859d51093a6727005ef8.zip |
Linux/MacOSX: Fix hidden volume settings not correctly displayed when enabling hidden volume protection in mount options window
Diffstat (limited to 'src/Main/Forms/MountOptionsDialog.cpp')
-rw-r--r-- | src/Main/Forms/MountOptionsDialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Main/Forms/MountOptionsDialog.cpp b/src/Main/Forms/MountOptionsDialog.cpp index 99355020..04410922 100644 --- a/src/Main/Forms/MountOptionsDialog.cpp +++ b/src/Main/Forms/MountOptionsDialog.cpp @@ -88,7 +88,8 @@ namespace VeraCrypt OptionsButton->SetLabel (OptionsButtonLabel + L" >"); OptionsPanel->Show (false); - ProtectionPasswordPanel = new VolumePasswordPanel (OptionsPanel, &options, options.ProtectionPassword, true, options.ProtectionKeyfiles, false, true, true, false, true, true, LangString["IDT_HIDDEN_PROT_PASSWD"]); + ProtectionPasswordPanel = new VolumePasswordPanel (ProtectionSizer->GetStaticBox(), &options, options.ProtectionPassword, true, options.ProtectionKeyfiles, false, true, true, false, true, true, LangString["IDT_HIDDEN_PROT_PASSWD"]); + ProtectionPasswordPanel->TopOwnerParent = this; ProtectionPasswordSizer->Add (ProtectionPasswordPanel, 1, wxALL | wxEXPAND); UpdateDialog(); |