Skip to content

Commit

Permalink
Honor precondition of UpdateStandardCursor() (dotnet#2172)
Browse files Browse the repository at this point in the history
This CL reverts the logic to before
ff35bea - This is the April 2024 Update (v2.21.0) (dotnet#2115)

This fixes dotnet#2169.
  • Loading branch information
paralaxsd committed May 10, 2024
1 parent c27224c commit 8029186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Input/Silk.NET.Input.Glfw/GlfwCursor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public StandardCursor StandardCursor
{
if (_standardCursor != value)
{
UpdateStandardCursor();
_standardCursor = value;
UpdateStandardCursor();
}
}
}
Expand Down

0 comments on commit 8029186

Please sign in to comment.