Browse Source

fix NRE in textbox.

pull/2865/head
Dan Walmsley 7 years ago
parent
commit
28bf8937b5
  1. 2
      src/Avalonia.Controls/TextBox.cs

2
src/Avalonia.Controls/TextBox.cs

@ -318,7 +318,7 @@ namespace Avalonia.Controls
private void DecideCaretVisibility() private void DecideCaretVisibility()
{ {
_presenter.ShowCaret(); _presenter?.ShowCaret();
} }
protected override void OnLostFocus(RoutedEventArgs e) protected override void OnLostFocus(RoutedEventArgs e)

Loading…
Cancel
Save