Merge pull request #2533 from jpark37/lut-file-filter

obs-filters: Fix LUT file extension filter on Linux
master
Jim 2020-03-20 19:06:11 -07:00 committed by GitHub
commit b94506e84a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ static obs_properties_t *color_grade_filter_properties(void *data)
obs_properties_t *props = obs_properties_create();
struct dstr filter_str = {0};
dstr_cat(&filter_str, "(*.cube;*.png)");
dstr_cat(&filter_str, "(*.cube *.png)");
if (s && s->file && *s->file) {
dstr_copy(&path, s->file);