From f50431729aa712e8340b9c3ee6f3444d66b8e7f0 Mon Sep 17 00:00:00 2001 From: EDU-WENGERJ Date: Tue, 21 Apr 2026 16:35:09 +0200 Subject: [PATCH] Limit exFAT volume label length to 11 characters --- lib/mintstick.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mintstick.py b/lib/mintstick.py index 24ba055..33e5e7b 100755 --- a/lib/mintstick.py +++ b/lib/mintstick.py @@ -136,7 +136,7 @@ def devices_changed_callback(client): self.fsmodel = Gtk.ListStore(str, str, int, bool, bool) # id label max-length force-upper-case force-alpha-numeric self.fsmodel.append(["fat32", "FAT32", 11, True, True]) - self.fsmodel.append(["exfat", "exFAT", 15, False, False]) + self.fsmodel.append(["exfat", "exFAT", 11, False, False]) self.fsmodel.append(["ntfs", "NTFS", 32, False, False]) self.fsmodel.append(["ext4", "EXT4", 16, False, False]) self.filesystemlist.set_model(self.fsmodel)