decompiler: Support GtkFileFilter tags

This commit is contained in:
James Westman 2021-12-14 20:25:28 -06:00
parent 168b87bb4a
commit 31e37ca258
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
3 changed files with 39 additions and 3 deletions

View file

@ -2,7 +2,17 @@ using Gtk 4.0;
FileFilter {
name: "File Filter Name";
mime-types ["text/plain", "image/ *"]
patterns ["*.txt"]
suffixes ["png"]
mime-types [
"text/plain",
"image/ *",
]
patterns [
"*.txt",
]
suffixes [
"png",
]
}