From cb6590e7ef77a9b03a5e29ea942179afa4f07f3a Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 27 Dec 2022 18:50:08 +0100 Subject: [PATCH] Format code --- Source/Engine/UI/GUI/Common/TextBoxBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/UI/GUI/Common/TextBoxBase.cs b/Source/Engine/UI/GUI/Common/TextBoxBase.cs index 0e9c34954..2999fe957 100644 --- a/Source/Engine/UI/GUI/Common/TextBoxBase.cs +++ b/Source/Engine/UI/GUI/Common/TextBoxBase.cs @@ -1047,7 +1047,7 @@ namespace FlaxEngine.GUI // Animate view offset _viewOffset = isDeltaSlow ? _targetViewOffset : Float2.Lerp(_viewOffset, _targetViewOffset, deltaTime * 20.0f); - + // Clicking outside of the text box will end text editing. Left will keep the value, right will restore original value if (_isEditing && EndEditOnClick) {