Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
cursorfreeze time is in seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
galister authored and galister committed Nov 7, 2022
1 parent 1a285e4 commit 475b2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Overlays/XorgScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ protected internal override void OnPointerHover(PointerHit hitData)
protected internal override void OnPointerDown(PointerHit hitData)
{
base.OnPointerDown(hitData);
_freezeCursor = DateTime.UtcNow + TimeSpan.FromMilliseconds(Config.Instance.ClickFreezeTime);
_freezeCursor = DateTime.UtcNow + TimeSpan.FromSeconds(Config.Instance.ClickFreezeTime);
SendMouse(hitData, true);
}

Expand Down

0 comments on commit 475b2d5

Please sign in to comment.