Fix Pen tool regression that broke dragging a sharp tangent out of the last-placed anchor (#4115)

This commit is contained in:
Keavon Chambers 2026-05-06 03:16:24 -07:00 committed by GitHub
parent ecf94258fa
commit d106bedecd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -624,6 +624,8 @@ impl PenToolData {
if let Some(point) = self.latest_point_mut() { if let Some(point) = self.latest_point_mut() {
point.in_segment = None; point.in_segment = None;
} }
return;
} }
// Closing path // Closing path