mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-07-07 15:55:00 +00:00
Fix lasso select extending the previous selection area after it was aborted (#2792)
Fix lasso select extends previous path after abort
This commit is contained in:
parent
532e913017
commit
a4fbea9193
1 changed files with 2 additions and 0 deletions
|
@ -1402,6 +1402,7 @@ impl Fsm for SelectToolFsmState {
|
|||
responses.add(DocumentMessage::AbortTransaction);
|
||||
tool_data.snap_manager.cleanup(responses);
|
||||
tool_data.axis_align = false;
|
||||
tool_data.lasso_polygon.clear();
|
||||
responses.add(OverlaysMessage::Draw);
|
||||
|
||||
let selection = tool_data.nested_selection_behavior;
|
||||
|
@ -1422,6 +1423,7 @@ impl Fsm for SelectToolFsmState {
|
|||
|
||||
responses.add(DocumentMessage::AbortTransaction);
|
||||
tool_data.snap_manager.cleanup(responses);
|
||||
tool_data.lasso_polygon.clear();
|
||||
responses.add(OverlaysMessage::Draw);
|
||||
|
||||
let selection = tool_data.nested_selection_behavior;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue