Fix regression with inability to drag segments using the Path tool's segment mode (#2850)

Fix segment dragging
This commit is contained in:
Adesh Gupta 2025-07-10 14:21:25 +05:30 committed by GitHub
parent 13ad814639
commit 912e6f61a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1701,9 +1701,9 @@ impl Fsm for PathToolFsmState {
break_molding, break_molding,
tool_data.temporary_adjacent_handles_while_molding, tool_data.temporary_adjacent_handles_while_molding,
); );
}
return PathToolFsmState::Dragging(tool_data.dragging_state); return PathToolFsmState::Dragging(tool_data.dragging_state);
}
} }
let anchor_and_handle_toggled = input.keyboard.get(move_anchor_with_handles as usize); let anchor_and_handle_toggled = input.keyboard.get(move_anchor_with_handles as usize);