VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Main/Forms/Forms.cpp2
-rw-r--r--src/Main/Forms/TrueCrypt.fbp2
-rw-r--r--src/Main/Forms/VolumePasswordPanel.cpp4
3 files changed, 5 insertions, 3 deletions
diff --git a/src/Main/Forms/Forms.cpp b/src/Main/Forms/Forms.cpp
index 76080605..138ea60a 100644
--- a/src/Main/Forms/Forms.cpp
+++ b/src/Main/Forms/Forms.cpp
@@ -3154,7 +3154,7 @@ VolumePasswordPanelBase::VolumePasswordPanelBase( wxWindow* parent, wxWindowID i
3154 HeaderWipeCountText->Wrap( -1 ); 3154 HeaderWipeCountText->Wrap( -1 );
3155 GridBagSizer->Add( HeaderWipeCountText, wxGBPosition( 8, 0 ), wxGBSpan( 1, 1 ), wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxRIGHT, 5 ); 3155 GridBagSizer->Add( HeaderWipeCountText, wxGBPosition( 8, 0 ), wxGBSpan( 1, 1 ), wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxRIGHT, 5 );
3156 3156
3157 wxString HeaderWipeCountChoices[] = { _("3-pass"), _("7-pass"), _("35-pass"), _("256-pass"), _("3") }; 3157 wxString HeaderWipeCountChoices[] = { _("3-pass"), _("7-pass"), _("35-pass"), _("256-pass") };
3158 int HeaderWipeCountNChoices = sizeof( HeaderWipeCountChoices ) / sizeof( wxString ); 3158 int HeaderWipeCountNChoices = sizeof( HeaderWipeCountChoices ) / sizeof( wxString );
3159 HeaderWipeCount = new wxChoice( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, HeaderWipeCountNChoices, HeaderWipeCountChoices, 0 ); 3159 HeaderWipeCount = new wxChoice( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, HeaderWipeCountNChoices, HeaderWipeCountChoices, 0 );
3160 HeaderWipeCount->SetSelection( 0 ); 3160 HeaderWipeCount->SetSelection( 0 );
diff --git a/src/Main/Forms/TrueCrypt.fbp b/src/Main/Forms/TrueCrypt.fbp
index bc11db47..9913c09f 100644
--- a/src/Main/Forms/TrueCrypt.fbp
+++ b/src/Main/Forms/TrueCrypt.fbp
@@ -25402,7 +25402,7 @@
25402 <property name="caption"></property> 25402 <property name="caption"></property>
25403 <property name="caption_visible">1</property> 25403 <property name="caption_visible">1</property>
25404 <property name="center_pane">0</property> 25404 <property name="center_pane">0</property>
25405 <property name="choices">&quot;3-pass&quot; &quot;7-pass&quot; &quot;35-pass&quot; &quot;256-pass&quot; &quot;3&quot;</property> 25405 <property name="choices">&quot;3-pass&quot; &quot;7-pass&quot; &quot;35-pass&quot; &quot;256-pass&quot;</property>
25406 <property name="close_button">1</property> 25406 <property name="close_button">1</property>
25407 <property name="context_help"></property> 25407 <property name="context_help"></property>
25408 <property name="context_menu">1</property> 25408 <property name="context_menu">1</property>
diff --git a/src/Main/Forms/VolumePasswordPanel.cpp b/src/Main/Forms/VolumePasswordPanel.cpp
index 38463728..5b1b9db6 100644
--- a/src/Main/Forms/VolumePasswordPanel.cpp
+++ b/src/Main/Forms/VolumePasswordPanel.cpp
@@ -62,7 +62,9 @@ namespace VeraCrypt
62 KeyfilesButton->Show (enableKeyfiles); 62 KeyfilesButton->Show (enableKeyfiles);
63 63
64 Pkcs5PrfStaticText->Show (enablePkcs5Prf); 64 Pkcs5PrfStaticText->Show (enablePkcs5Prf);
65 Pkcs5PrfChoice->Show (enablePkcs5Prf); 65 Pkcs5PrfChoice->Show (enablePkcs5Prf);
66 HeaderWipeCountText->Show (enablePkcs5Prf);
67 HeaderWipeCount->Show (enablePkcs5Prf);
66 68
67 if (enablePkcs5Prf) 69 if (enablePkcs5Prf)
68 { 70 {