From 7cca6624c50a3c93f2b3ceb10c510fe15d90fc98 Mon Sep 17 00:00:00 2001 From: Muhammad Salman Date: Tue, 20 Aug 2024 12:25:41 +0000 Subject: [PATCH] Remove the dropdown changing its label to the filesystem type of the selected partition rather than the type it's going to format as --- vanilla_installer/defaults/disk.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vanilla_installer/defaults/disk.py b/vanilla_installer/defaults/disk.py index 8b4ed2fc..92b3c3ec 100644 --- a/vanilla_installer/defaults/disk.py +++ b/vanilla_installer/defaults/disk.py @@ -88,8 +88,6 @@ def __add_dropdown(self): fs_dropdown.set_visible(False) selected_fs = self.__default_fs - if self.__partition.fs_type in self.__partition_fs_types: - selected_fs = self.__partition.fs_type fs_dropdown.set_selected(self.__partition_fs_types.index(selected_fs)) fs_dropdown.connect("notify::selected", self.__on_dropdown_selected)