From f4768f16c84f7c3e55fbe189af2e10608909fa47 Mon Sep 17 00:00:00 2001 From: Akira TAGOH Date: Mon, 13 Feb 2023 12:44:15 +0900 Subject: [PATCH] Fix an assertion in GtkFontChooserWidget when setting a filter. (cherry-picked from commit 4532c3020b2ca5fc865c7e684780d1da7fb870e1) --- gtk/gtkfontchooserwidget.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkfontchooserwidget.c b/gtk/gtkfontchooserwidget.c index e35b961dff..f9e459e7ca 100644 --- a/gtk/gtkfontchooserwidget.c +++ b/gtk/gtkfontchooserwidget.c @@ -911,6 +911,7 @@ gtk_font_chooser_widget_class_init (GtkFontChooserWidgetClass *klass) gtk_widget_class_bind_template_child (widget_class, GtkFontChooserWidget, selection); gtk_widget_class_bind_template_child (widget_class, GtkFontChooserWidget, custom_filter); gtk_widget_class_bind_template_child (widget_class, GtkFontChooserWidget, user_filter); + gtk_widget_class_bind_template_child (widget_class, GtkFontChooserWidget, multi_filter); gtk_widget_class_bind_template_child (widget_class, GtkFontChooserWidget, preview); gtk_widget_class_bind_template_child (widget_class, GtkFontChooserWidget, preview2); gtk_widget_class_bind_template_child (widget_class, GtkFontChooserWidget, size_label);