Browse Source

libobs: fix property group check

Anton Bershanskiy 4 years ago
parent
commit
fc9716f0dd
1 changed files with 2 additions and 1 deletions
  1. 2 1
      libobs/obs-properties.c

+ 2 - 1
libobs/obs-properties.c

@@ -752,7 +752,8 @@ static bool check_property_group_recursion(obs_properties_t *parent,
 				 * lets verify anyway. */
 				return true;
 			}
-			check_property_group_recursion(cprops, group);
+			if (check_property_group_recursion(cprops, group))
+				return true;
 		}
 
 		current_property = current_property->next;