summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Göllnitz <camelcasenick@bewares.it>2023-05-16 20:49:28 +0200
committerMarkus Göllnitz <camelcasenick@bewares.it>2023-05-16 20:49:28 +0200
commit98c47cee1010628f897ad8c0c7de39c86fb330bf (patch)
tree59e9e06706346ee05418edee970d25cae9fd072a
parenteaaafb034ba77b1c0f4e9e6680192b7840741fa3 (diff)
downloadgnome-control-center-98c47cee1010628f897ad8c0c7de39c86fb330bf.tar.gz
mouse: ensure type CcListRowInfoButton is available to GtkBuilder
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 <camelcasenick@bewares.it>
-rw-r--r--panels/mouse/cc-mouse-panel.c2
1 files changed, 2 insertions, 0 deletions
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");