Merge pull request #2755 from exeldro/keep_filters
libobs: Don't check filter compatibility on not loaded sources
This commit is contained in:
commit
76c42215d6
@ -2373,7 +2373,7 @@ void obs_source_filter_add(obs_source_t *source, obs_source_t *filter)
|
||||
return;
|
||||
}
|
||||
|
||||
if (!filter_compatible(source, filter)) {
|
||||
if (!source->owns_info_id && !filter_compatible(source, filter)) {
|
||||
pthread_mutex_unlock(&source->filter_mutex);
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user