mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 08:22:56 +08:00
Remove code to check for other focused controls
This commit is contained in:
parent
5852657205
commit
acdf64e1f7
@ -68,13 +68,7 @@ namespace osu.Game.Screens.Select
|
|||||||
protected override void Update()
|
protected override void Update()
|
||||||
{
|
{
|
||||||
if (GrabFocus && !HasFocus && IsVisible)
|
if (GrabFocus && !HasFocus && IsVisible)
|
||||||
{
|
TriggerFocus();
|
||||||
var inputManager = Parent;
|
|
||||||
while (inputManager != null && !(inputManager is InputManager))
|
|
||||||
inputManager = inputManager.Parent;
|
|
||||||
if (inputManager != null && (inputManager as InputManager)?.FocusedDrawable == null)
|
|
||||||
TriggerFocus();
|
|
||||||
}
|
|
||||||
base.Update();
|
base.Update();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user