summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-07-15 16:52:05 +0000
committerMatthias Clasen <mclasen@redhat.com>2020-07-15 16:52:05 +0000
commit5666127dbc476404a4dbc62732190e327455c8b8 (patch)
treec577707f621d0ae5ec4eea04a840e2aaa024297e
parenteb2a839892f1b5c55b5aa94e49c3cb9af08db335 (diff)
parentc1c110ba65411453209e701d658eb5a3c2b2dfb0 (diff)
downloadgtk+-5666127dbc476404a4dbc62732190e327455c8b8.tar.gz
Merge branch 'matthiasc/for-master' into 'master'
inspector: Use substring matching in the property list See merge request GNOME/gtk!2247
-rw-r--r--gtk/inspector/prop-list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/inspector/prop-list.c b/gtk/inspector/prop-list.c
index 5c5a2c5e33..44a3e8ce0b 100644
--- a/gtk/inspector/prop-list.c
+++ b/gtk/inspector/prop-list.c
@@ -114,7 +114,7 @@ gtk_inspector_prop_list_init (GtkInspectorPropList *pl)
pl->priv = gtk_inspector_prop_list_get_instance_private (pl);
gtk_widget_init_template (GTK_WIDGET (pl));
pl->priv->filter = gtk_string_filter_new ();
- gtk_string_filter_set_match_mode (GTK_STRING_FILTER (pl->priv->filter), GTK_STRING_FILTER_MATCH_MODE_PREFIX);
+ gtk_string_filter_set_match_mode (GTK_STRING_FILTER (pl->priv->filter), GTK_STRING_FILTER_MATCH_MODE_SUBSTRING);
sorter = gtk_string_sorter_new (gtk_cclosure_expression_new (G_TYPE_STRING, NULL,
0, NULL,