Skip to content

Commit 912e6f6

Browse files
authored
Fix regression with inability to drag segments using the Path tool's segment mode (#2850)
Fix segment dragging
1 parent 13ad814 commit 912e6f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editor/src/messages/tool/tool_messages/path_tool.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1701,9 +1701,9 @@ impl Fsm for PathToolFsmState {
17011701
break_molding,
17021702
tool_data.temporary_adjacent_handles_while_molding,
17031703
);
1704-
}
17051704

1706-
return PathToolFsmState::Dragging(tool_data.dragging_state);
1705+
return PathToolFsmState::Dragging(tool_data.dragging_state);
1706+
}
17071707
}
17081708

17091709
let anchor_and_handle_toggled = input.keyboard.get(move_anchor_with_handles as usize);

0 commit comments

Comments
 (0)