Explorar el Código

UI: Fix bug with path property browse button

When the editable list property was added, I added a case to a switch
statement without putting a break on the case before it.
jp9000 hace 10 años
padre
commit
336cd7ebe9
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      obs/properties-view.cpp

+ 1 - 0
obs/properties-view.cpp

@@ -932,6 +932,7 @@ void WidgetInfo::ControlChanged()
 	case OBS_PROPERTY_PATH:
 		if (!PathChanged(setting))
 			return;
+		break;
 	case OBS_PROPERTY_EDITABLE_LIST: return;
 	}