Browse Source

libobs: fix property group check

Exeldro 4 years ago
parent
commit
edc439b0a5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libobs/obs-properties.c

+ 1 - 1
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;
 		}