Fix crash when changing position of scene item transform

This commit is contained in:
WarmUpTill 2024-09-15 12:19:22 +02:00 committed by WarmUpTill
parent aef080984e
commit c39ea0854a

View File

@ -147,6 +147,8 @@ static void handlePosOrScaleOrBounds(struct obs_transform_info &info,
target = &info.scale;
} else if (setting.GetNestedID() == "bounds") {
target = &info.bounds;
} else if (setting.GetNestedID() == "pos") {
target = &info.pos;
}
if (setting.GetID() == "x") {