From 98c47cee1010628f897ad8c0c7de39c86fb330bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20G=C3=B6llnitz?= Date: Tue, 16 May 2023 20:49:28 +0200 Subject: mouse: ensure type CcListRowInfoButton is available to GtkBuilder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The newly introduced CcListRowInfoButton is not available to GtkBuilder and henceforth building the mouse panel currently fails. Therefore, it CcListRowInfoButton has to be declared to be a type that needs to be available to this panel. Signed-off-by: Markus Göllnitz --- panels/mouse/cc-mouse-panel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panels/mouse/cc-mouse-panel.c b/panels/mouse/cc-mouse-panel.c index 3aae53499..0b1c23164 100644 --- a/panels/mouse/cc-mouse-panel.c +++ b/panels/mouse/cc-mouse-panel.c @@ -26,6 +26,7 @@ #include "cc-illustrated-row.h" #include "cc-split-row.h" +#include "cc-list-row-info-button.h" #include "cc-mouse-caps-helper.h" #include "cc-mouse-panel.h" @@ -425,6 +426,7 @@ cc_mouse_panel_class_init (CcMousePanelClass *klass) g_type_ensure (CC_TYPE_ILLUSTRATED_ROW); g_type_ensure (CC_TYPE_SPLIT_ROW); + g_type_ensure (CC_TYPE_LIST_ROW_INFO_BUTTON); gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/control-center/mouse/cc-mouse-panel.ui"); -- cgit v1.2.1