UI: Fix transform options being wrongly enabled/disabled

They detection for this was not checking the n selected items but the
first n items in the list, which would lead to the options being enabled
or disabled based on the whether other items were locked.
This commit is contained in:
gxalpha 2022-01-24 20:44:08 +01:00 committed by Jim
parent b3b4e1b2ef
commit 799ac3f6a0

View file

@ -7803,7 +7803,7 @@ void OBSBasic::UpdateEditMenu()
bool canTransform = false;
for (int i = 0; i < count; i++) {
OBSSceneItem item = ui->sources->Get(i);
OBSSceneItem item = ui->sources->Get(items.value(i).row());
if (!obs_sceneitem_locked(item))
canTransform = true;
}