From 81af86fb6674dc54b32a8f3d0ff2fd2fa34537d2 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Wed, 19 Aug 2020 23:14:36 +0200 Subject: AccountsList: Fix no address book being selectable --- src/contacts-accounts-list.vala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/contacts-accounts-list.vala b/src/contacts-accounts-list.vala index 1d92b78..7e96657 100644 --- a/src/contacts-accounts-list.vala +++ b/src/contacts-accounts-list.vala @@ -109,6 +109,7 @@ public class Contacts.AccountsList : ListBox { "vexpand", true, "hexpand", true); row.add (checkmark); + row.set_activatable_widget (checkmark); row.set_data ("checkmark", checkmark); add (row); @@ -132,6 +133,7 @@ public class Contacts.AccountsList : ListBox { "vexpand", true, "hexpand", true); local_row.add (checkmark); + local_row.set_activatable_widget (checkmark); local_row.set_data ("checkmark", checkmark); local_row.set_data ("store", local_store); add (local_row); -- cgit v1.2.1