1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 12:40:18 +08:00

Fix new inspection after framework bump

This commit is contained in:
Bartłomiej Dach
2024-06-18 18:32:58 +02:00
Unverified
parent 5551bae7ce
commit 8836b98070
@@ -116,7 +116,7 @@ namespace osu.Game.Screens.Edit.Components
inputTextBox.Text = editorClock.CurrentTime.ToEditorFormattedString();
Schedule(() =>
{
GetContainingFocusManager().ChangeFocus(inputTextBox);
GetContainingFocusManager()!.ChangeFocus(inputTextBox);
inputTextBox.SelectAll();
});
};