filefilter: Fix <suffixes> in buildable

A bug in GtkFileFilter's GtkBuildable implementation caused the
<suffixes> tag not to be recognized.
This commit is contained in:
James Westman 2022-03-17 10:49:39 -05:00 committed by Matthias Clasen
parent 3e4bfa2bae
commit 1f00cdc7a6
2 changed files with 8 additions and 2 deletions

View File

@ -283,7 +283,8 @@ parser_start_element (GtkBuildableParseContext *context,
}
if (strcmp (element_name, "mime-types") == 0 ||
strcmp (element_name, "patterns") == 0)
strcmp (element_name, "patterns") == 0 ||
strcmp (element_name, "suffixes") == 0)
{
if (!_gtk_builder_check_parent (data->builder, context, "object", error))
return;
@ -422,7 +423,8 @@ gtk_file_filter_buildable_custom_tag_end (GtkBuildable *buildable,
gpointer user_data)
{
if (strcmp (tagname, "mime-types") == 0 ||
strcmp (tagname, "patterns") == 0)
strcmp (tagname, "patterns") == 0 ||
strcmp (tagname, "suffixes") == 0)
{
SubParserData *data = (SubParserData*)user_data;

View File

@ -9,5 +9,9 @@
<pattern>*.txt</pattern>
<pattern>*.png</pattern>
</patterns>
<suffixes>
<suffix>txt</suffix>
<suffix>png</suffix>
</suffixes>
</object>
</interface>