Fix texture not updating when moving cube in per group texture format

This commit is contained in:
JannisX11 2025-02-16 19:01:31 +01:00
parent a21c60c589
commit 41faa51738

View File

@ -886,6 +886,9 @@ function moveOutlinerSelectionTo(item, target, event, order) {
}
} else {
item.preview_controller.updateTransform(item);
if (Format.per_group_texture && item.preview_controller.updateFaces) {
item.preview_controller.updateFaces(item);
}
}
}
}