Skip to content

Commit

Permalink
fix: #1530
Browse files Browse the repository at this point in the history
  • Loading branch information
NaBian committed Mar 5, 2024
1 parent 6333276 commit 485d825
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void Update(bool isShow)
}
else
{
Mouse.OverrideCursor = Cursors.Arrow;
Mouse.OverrideCursor = null;
MouseHook.Stop();
MouseHook.StatusChanged -= MouseHook_StatusChanged;
}
Expand Down Expand Up @@ -88,7 +88,7 @@ private void UpdateCursor(bool isDropper)
{
if (_cursorIsSetted)
{
Mouse.OverrideCursor = Cursors.Arrow;
Mouse.OverrideCursor = null;
_cursorIsSetted = false;
}
}
Expand Down

0 comments on commit 485d825

Please sign in to comment.