mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 11:08:02 -06:00
Linux: Fix wrong size for hidden volume when selecting the option to use all free space (fix by @Jertzukka)
This commit is contained in:
@@ -79,7 +79,7 @@ namespace VeraCrypt
|
|||||||
uint64 val;
|
uint64 val;
|
||||||
if (UseAllFreeSpaceCheckBox->IsChecked ())
|
if (UseAllFreeSpaceCheckBox->IsChecked ())
|
||||||
{
|
{
|
||||||
val = AvailableDiskSpace;
|
val = MaxVolumeSizeValid ? MaxVolumeSize : AvailableDiskSpace;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user