Skip to content

Commit 5fae520

Browse files
committed
Fixed formatting issue
1 parent c8fe3aa commit 5fae520

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -860,12 +860,12 @@ impl Fsm for PenToolFsmState {
860860

861861
// Draw the line between the currently-being-placed anchor and its incoming handle (opposite the one currently being dragged out)
862862
overlay_context.line(next_anchor, handle_end, None);
863-
864-
if self == PenToolFsmState::PlacingAnchor && anchor_start != handle_start && tool_data.modifiers.lock_angle {
863+
864+
if self == PenToolFsmState::PlacingAnchor && anchor_start != handle_start && tool_data.modifiers.lock_angle {
865865
// Draw the line between the currently-being-placed anchor and last-placed point (Lock angle bent overlays)
866866
overlay_context.dashed_line(anchor_start, next_anchor, None, Some(4.), Some(4.), Some(0.5));
867867
}
868-
868+
869869
match tool_options.pen_overlay_mode {
870870
PenOverlayMode::AllHandles => {
871871
path_overlays(document, shape_editor, &mut overlay_context, DrawHandles::All);

0 commit comments

Comments
 (0)