mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-04 14:46:09 -05:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user