Skip to content

Commit

Permalink
Grabbed handle selection is now considered "over" for highlighting
Browse files Browse the repository at this point in the history
fixes #1296
  • Loading branch information
vchelaru committed Dec 12, 2023
1 parent 0d5b0c8 commit b470e53
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1309,6 +1309,11 @@ public bool IsMouseOverThis()
{
return true;
}
// This may have snapping, which means if grabbed the mouse isn't physically over it, but it should still count
if (IsGrabbed)
{
return true;
}
return false;
}

Expand Down

0 comments on commit b470e53

Please sign in to comment.