Skip to content

Commit 53175af

Browse files
committed
main: Increase overhead threshold to 16GB
Looks like a lot of newer installs end up with 13GB or so of overhead as calculated by the installer. This is confusing users. We still have no idea what this is about or where it comes from, but it's not the Time Machine issue, so let's just squelch the message in these cases. Signed-off-by: Hector Martin <[email protected]>
1 parent e4d8bb3 commit 53175af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ def action_resize(self, resizable):
697697
p_info( f" Overhead: {col()}{ssize(overhead)}")
698698
p_info( f" Minimum new size: {col()}{ssize(min_size)} ({min_perc:.2f}%)")
699699
print()
700-
if overhead > 1000000000:
700+
if overhead > 16_000_000_000:
701701
p_warning(" Warning: The selected partition has a large amount of overhead space.")
702702
p_warning(" This prevents you from resizing the partition to a smaller size, even")
703703
p_warning(" though macOS reports that space as free.")

0 commit comments

Comments
 (0)