From edc439b0a503b87db0734dfe70984fa8d9ce5e9a Mon Sep 17 00:00:00 2001 From: Exeldro Date: Wed, 24 Mar 2021 10:50:28 +0100 Subject: [PATCH] libobs: fix property group check --- libobs/obs-properties.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs/obs-properties.c b/libobs/obs-properties.c index 50fb26f33..de1705daf 100644 --- a/libobs/obs-properties.c +++ b/libobs/obs-properties.c @@ -752,7 +752,7 @@ static bool check_property_group_recursion(obs_properties_t *parent, * lets verify anyway. */ return true; } - if (check_property_group_recursion(cprops, group)) + if (check_property_group_recursion(parent, cprops)) return true; }