mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Update further ChangeFocus
usages
This commit is contained in:
@ -183,7 +183,8 @@ namespace osu.Game.Overlays.Login
|
||||
break;
|
||||
}
|
||||
|
||||
if (form != null) GetContainingInputManager()?.ChangeFocus(form);
|
||||
if (form != null)
|
||||
ScheduleAfterChildren(() => GetContainingInputManager()?.ChangeFocus(form));
|
||||
});
|
||||
|
||||
public override bool AcceptsFocus => true;
|
||||
|
@ -78,7 +78,7 @@ namespace osu.Game.Overlays
|
||||
panel.Bounding = true;
|
||||
this.FadeIn(transition_time, Easing.OutQuint);
|
||||
|
||||
GetContainingInputManager().ChangeFocus(panel);
|
||||
ScheduleAfterChildren(() => GetContainingInputManager().ChangeFocus(panel));
|
||||
}
|
||||
|
||||
protected override void PopOut()
|
||||
|
Reference in New Issue
Block a user