aboutsummaryrefslogtreecommitdiffstats
path: root/lib/isodumper.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/isodumper.py')
-rwxr-xr-xlib/isodumper.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py
index 9c34e15..785c996 100755
--- a/lib/isodumper.py
+++ b/lib/isodumper.py
@@ -585,6 +585,8 @@ NTFS or ext. You can specify a volume name and the format in a new dialog box.<B
vb_c = atelier.createVBox(cr)
vb_c1 = atelier.createHBox(vb_c)
format_fat = atelier.createRadioButton(atelier.createLeft(vb_c1),_("FAT 32 (Windows)"))
+ vb_c4 = atelier.createHBox(vb_c)
+ format_exfat = atelier.createRadioButton(atelier.createLeft(vb_c4),_("exFAT (Windows))"))
vb_c2 = atelier.createHBox(vb_c)
format_ntfs = atelier.createRadioButton(atelier.createLeft(vb_c2),_("NTFS (Windows)"))
vb_c3 = atelier.createHBox(vb_c)
@@ -604,6 +606,10 @@ NTFS or ext. You can specify a volume name and the format in a new dialog box.<B
format_type = 'fat32'
format_label = label.value().upper()[:11]
break
+ if format_exfat.value():
+ format_type = 'exfat'
+ format_label = label.value()[:32]
+ break
if format_ntfs.value():
format_type = 'ntfs'
format_label = label.value()[:32]