Skip to content

Commit

Permalink
Reset tooltip text, fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Oct 1, 2024
1 parent 72ba72a commit c1a71b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Widgets/PartitionMenu.vala
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ public class Installer.PartitionMenu : Gtk.Popover {
private void check_values (SetMount set_mount) {
if (!use_partition.active) {
partition_bar.icon = null;
partition_bar.tooltip_text = null;
return;
}

Expand All @@ -271,7 +272,7 @@ public class Installer.PartitionMenu : Gtk.Popover {
mount,
partition_bar.get_partition_size (),
(format_partition.active ? InstallerDaemon.MountFlags.FORMAT : 0)
+ (is_lvm ? InstallerDaemon.MountFlags.LVM : 0),
+ (is_lvm ? InstallerDaemon.MountFlags.LVM : 0),
filesystem,
this
));
Expand Down

0 comments on commit c1a71b4

Please sign in to comment.