Skip to content

Commit

Permalink
fix: add overlay draw message
Browse files Browse the repository at this point in the history
Will now visibly select point when pressing tab
  • Loading branch information
DaraghD committed Oct 21, 2024
1 parent 383dbb6 commit 7c43465
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions editor/src/messages/tool/tool_messages/path_tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ impl<'a> MessageHandler<ToolMessage, &mut ToolActionHandlerData<'a>> for PathToo
match message {
ToolMessage::Path(PathToolMessage::AlternateSelectedHandles) => {
tool_data.shape_editor.alternate_selected_handles(&tool_data.document.network_interface);
responses.add(PathToolMessage::SelectedPointUpdated);
responses.add(OverlaysMessage::Draw);
}
_ => {
self.fsm_state.process_event(message, &mut self.tool_data, tool_data, &(), responses, true);
Expand Down

0 comments on commit 7c43465

Please sign in to comment.