mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 13:13:34 +01:00
Linux/MacOSX: workaround for wxWidgets bug in the method wxTextEntry::IsEmpty that made it impossible to enter a one digit size for the volume.
This commit is contained in:
parent
55b3400afa
commit
9a31c23881
@ -89,7 +89,7 @@ namespace VeraCrypt
|
||||
|
||||
bool VolumeSizeWizardPage::IsValid ()
|
||||
{
|
||||
if (!VolumeSizeTextCtrl->IsEmpty() && Validate())
|
||||
if (!VolumeSizeTextCtrl->GetValue().empty() && Validate())
|
||||
{
|
||||
try
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user