Proper automatic/manual partitioning switch

This commit is contained in:
2026-02-02 11:50:44 +01:00
parent 62e1276881
commit f8b9cb62f9
4 changed files with 121 additions and 13 deletions

View File

@@ -90,11 +90,12 @@ class PartitioningPage(Adw.Bin):
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
box.set_spacing(24)
box.set_valign(Gtk.Align.CENTER)
box.set_margin_top(24)
box.set_margin_bottom(24)
clamp.set_child(box)
title = Gtk.Label(label="Disk Configuration")
title = Gtk.Label(label="Manual Partitioning")
title.add_css_class("title-1")
box.append(title)
@@ -375,3 +376,6 @@ class PartitioningPage(Adw.Bin):
add_menu_item("Create Partition", "list-add-symbolic")
popover.popup()
def get_config(self):
return {"partitions": self.partitions}