Browse Source

Basic UI: Fix scene/source reference counter

The 'how many scenes is this source in' reference counter used
in the basic UI was not being decremented.
jp9000 11 years ago
parent
commit
7b0adc9b24
1 changed files with 2 additions and 0 deletions
  1. 2 0
      obs/window-basic-main.cpp

+ 2 - 0
obs/window-basic-main.cpp

@@ -577,6 +577,8 @@ void OBSBasic::RemoveSceneItem(OBSSceneItem item)
 	obs_source_t source = obs_sceneitem_getsource(item);
 
 	int scenes = sourceSceneRefs[source] - 1;
+	sourceSceneRefs[source] = scenes;
+
 	if (scenes == 0) {
 		obs_source_remove(source);
 		sourceSceneRefs.erase(source);