You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make the Path tool support multi-point conversion between smooth/sharp on double-click (#2498)
* kinda works
* solved merge conflicts
* implement the multi flip
* nit-picks
* removed extra functions
* Fix inputs not being passed to backend for repeated double-clicks
* Code review
---------
Co-authored-by: Keavon Chambers <keavon@keavon.com>
Copy file name to clipboardExpand all lines: editor/src/messages/tool/common_functionality/shape_editor.rs
+38-34Lines changed: 38 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ impl SelectedLayerState {
70
70
}
71
71
72
72
pubfnignore_handles(&mutself,status:bool){
73
-
ifself.ignore_handles== !status {
73
+
ifself.ignore_handles!= status {
74
74
return;
75
75
}
76
76
@@ -86,7 +86,7 @@ impl SelectedLayerState {
86
86
}
87
87
88
88
pubfnignore_anchors(&mutself,status:bool){
89
-
ifself.ignore_anchors== !status {
89
+
ifself.ignore_anchors!= status {
90
90
return;
91
91
}
92
92
@@ -774,7 +774,7 @@ impl ShapeState {
774
774
775
775
// For a non-endpoint anchor, handles are perpendicular to the average tangent of adjacent segments.(Refer:https://github.com/GraphiteEditor/Graphite/pull/2620#issuecomment-2881501494)
0 commit comments