From 7a1d105a432603866f0d1468f2d175e65ff5b6bc Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Thu, 17 Apr 2025 23:52:22 -0400 Subject: [PATCH] also increase multiplier if auto unzip --- src/Picocrypt.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Picocrypt.go b/src/Picocrypt.go index 6f28c92..3994195 100644 --- a/src/Picocrypt.go +++ b/src/Picocrypt.go @@ -803,6 +803,9 @@ func draw() { if recombine { multiplier++ } + if autoUnzip { + multiplier++ + } giu.Style().SetColor(giu.StyleColorText, WHITE).To( giu.Label("Ready (ensure " + sizeify(requiredFreeSpace*int64(multiplier)) + " of disk space is free)"), ).Build()