You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than updating the cursor after 250ms, I'd like for the option to immediately move the cursor on update (and not hide it). From a quick look at the code, it seems like I could just remove:
That function doesn't hold state of where the cursor was in the past. So if you remove that code the line drawn for the cursor will never be removed from screen.
There need to be a bit of code to track this and always unset it when a new update comes along.
Rather than updating the cursor after 250ms, I'd like for the option to immediately move the cursor on update (and not hide it). From a quick look at the code, it seems like I could just remove:
in
Program.cs
. IMO, this would be nicer behaviour forDontBlinkCursor
. Another option would be to add a flag for this new behaviour.The text was updated successfully, but these errors were encountered: