From c8c375636fab9a166326d6d0ae61d3c6b3b8790d Mon Sep 17 00:00:00 2001 From: Aergwyn Date: Fri, 25 Jan 2019 19:34:25 +0900 Subject: [PATCH] Use lambda Co-Authored-By: peppy --- osu.Game/Graphics/UserInterface/FocusedTextBox.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Graphics/UserInterface/FocusedTextBox.cs b/osu.Game/Graphics/UserInterface/FocusedTextBox.cs index 9eac0c1109..73c9c0dd0e 100644 --- a/osu.Game/Graphics/UserInterface/FocusedTextBox.cs +++ b/osu.Game/Graphics/UserInterface/FocusedTextBox.cs @@ -32,7 +32,7 @@ namespace osu.Game.Graphics.UserInterface public bool HoldFocus { - get { return allowImmediateFocus && focus; } + get => allowImmediateFocus && focus; set { focus = value;