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.
This commit is contained in:
jp9000 2015-06-21 03:54:00 -07:00
parent ecabe35f36
commit 336cd7ebe9

View file

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