From 071f0355fe62dc422267f6e0b1c7567d6c39f1b5 Mon Sep 17 00:00:00 2001 From: Paul Nasrat Date: Mon, 5 Jul 2004 14:16:43 +0000 Subject: Display small bootable partitions for Apple_Bootstrap (#125699) --- iw/partition_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iw') diff --git a/iw/partition_gui.py b/iw/partition_gui.py index 421258cdc..5b08ef53e 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -821,7 +821,7 @@ class PartitionWindow(InstallWindow): part = disk.next_partition(part) continue # ignore the tiny < 1 MB partitions (#119479) - if getPartSizeMB(part) <= 1.0: + if getPartSizeMB(part) <= 1.0 and not part.type & parted.PARTITION_BOOT: part = disk.next_partition(part) continue -- cgit