We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 353d2ff commit ac7bbf9Copy full SHA for ac7bbf9
editor/src/messages/tool/tool_messages/select_tool.rs
@@ -537,7 +537,8 @@ impl Fsm for SelectToolFsmState {
537
{
538
// TODO: Figure out and fix why this incorrectly applies the rotation twice if it's a leaf layer (VectorData, ImageFrame, etc. rather than a group)
539
let transform_node_transformation = transform_utils::get_current_transform(node.inputs.as_slice());
540
- return transform_node_transformation * transform;
+ info!("Transform node {transform_node_transformation} parent {transform}");
541
+ return transform * transform_node_transformation;
542
};
543
544
transform
0 commit comments