Skip to content

Commit 9d061d0

Browse files
committed
partitioning: Add an empty mount point option
It's not obvious that the combo can be edited. Users need to be able to remove an assigned mount point.
1 parent a9393da commit 9d061d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

usr/lib/live-installer/partitioning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def __init__(self, path, mount_as, format_as, type):
627627
# Build list of pre-provided mountpoints
628628
combobox = self.builder.get_object("comboboxentry_mount_point")
629629
model = Gtk.ListStore(str, str)
630-
for i in ["/", "/home", "/boot", "/boot/efi", "/srv", "/tmp", "swap"]:
630+
for i in ["", "/", "/home", "/boot", "/boot/efi", "/tmp", "swap"]:
631631
model.append(["", i])
632632
combobox.set_model(model)
633633
combobox.set_entry_text_column(1)

0 commit comments

Comments
 (0)