Skip to content

Commit

Permalink
Merge pull request #100 from pop-os/selectable-rows
Browse files Browse the repository at this point in the history
Make AppCenterPackageRow objects non selectable
  • Loading branch information
jackpot51 committed Oct 12, 2018
2 parents 81263b1 + bafbee8 commit 06b79ba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Widgets/PackageRow.vala
Expand Up @@ -28,6 +28,8 @@ namespace AppCenter.Widgets {
grid.changed.connect (() => {
changed ();
});

selectable = false;
}

public PackageRow.list (AppCenterCore.Package package, Gtk.SizeGroup? info_size_group, Gtk.SizeGroup? action_size_group, bool show_uninstall = true) {
Expand All @@ -36,6 +38,8 @@ namespace AppCenter.Widgets {
grid.changed.connect (() => {
changed ();
});

selectable = false;
}

public bool get_update_available () {
Expand Down

0 comments on commit 06b79ba

Please sign in to comment.