mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-05-18 10:31:31 +00:00
Linux/MacOSX: change cascade encryption naming format in the UI as it was done on Windows.
This commit is contained in:
@@ -24,7 +24,7 @@ namespace VeraCrypt
|
||||
foreach (shared_ptr <EncryptionAlgorithm> ea, EncryptionAlgorithms)
|
||||
{
|
||||
if (!ea->IsDeprecated())
|
||||
EncryptionAlgorithmChoice->Append (ea->GetName(), ea.get());
|
||||
EncryptionAlgorithmChoice->Append (ea->GetName(true), ea.get());
|
||||
}
|
||||
|
||||
EncryptionAlgorithmChoice->Select (0);
|
||||
@@ -124,7 +124,7 @@ namespace VeraCrypt
|
||||
{
|
||||
if (algorithm)
|
||||
{
|
||||
EncryptionAlgorithmChoice->SetStringSelection (algorithm->GetName());
|
||||
EncryptionAlgorithmChoice->SetStringSelection (algorithm->GetName(true));
|
||||
OnEncryptionAlgorithmSelected ();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user