From aef3bf7dccf9e71f080fff20737d2f52e1d6d194 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Wed, 31 Aug 2022 23:36:24 +0100 Subject: [PATCH] whitespace. --- src/Avalonia.Controls/TextBoxTextInputMethodClient.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Avalonia.Controls/TextBoxTextInputMethodClient.cs b/src/Avalonia.Controls/TextBoxTextInputMethodClient.cs index f9eb90611d..7530460dea 100644 --- a/src/Avalonia.Controls/TextBoxTextInputMethodClient.cs +++ b/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);