Replies: 1 comment 2 replies
-
@sLill the issue was labeled with help-wanted. Are you interested in working on it? @Gillibald anything against this? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It looks like the caret blink interval in TextPresenter is hard-coded to 500 ms. I believe this should be exposed via a StyledProperty on TextPresenter with 0 disabling the blinking behavior.
src/Avalonia.Controls/Presenters/TextPresenter.cs
public TextPresenter() { _caretTimer = new DispatcherTimer { Interval = TimeSpan.FromMilliseconds(500) }; }
Beta Was this translation helpful? Give feedback.
All reactions