Browse Source

whitespace.

Dan Walmsley 3 years ago
parent
commit
aef3bf7dcc
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/Avalonia.Controls/TextBoxTextInputMethodClient.cs

+ 4 - 2
src/Avalonia.Controls/TextBoxTextInputMethodClient.cs

@@ -48,11 +48,13 @@ namespace Avalonia.Controls
         }
 
         public bool SupportsSurroundingText => false;
-
-
+        
         public event EventHandler? SurroundingTextChanged { add { } remove { } }
+        
         public TextInputMethodSurroundingText SurroundingText => throw new NotSupportedException();
+        
         public string? TextBeforeCursor => null;
+        
         public string? TextAfterCursor => null;
 
         private void OnCaretBoundsChanged(object? sender, EventArgs e) => CursorRectangleChanged?.Invoke(this, EventArgs.Empty);