From 89a43d1b708a3ed7896ae171c1536242c2992a55 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Tue, 12 Oct 2021 21:41:43 +0200 Subject: Fix detection of activation on partition type in any case. --- lib/isodumper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/isodumper.py b/lib/isodumper.py index 2bc3e33..247e139 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -983,7 +983,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog backup_ready = self.backup_cbox.isChecked() and (self.backup_dest != "") write_ready = self.write_cbox.isChecked() and (self.img_name != "") - partition_ready = self.partition_cbox.isChecked() and (self.partition_cb.value() == "ext4") + partition_ready = self.partition_cbox.isChecked() and (self.partition_cb.value() in self.format_type.values()) crypt_ready = self.cryptcb.isChecked() and (self.cryptkey.value() != "") start_active = backup_ready or write_ready or partition_ready if start_active: -- cgit v1.2.1