1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 03:25:11 +08:00

Fix interaction with popover when textbox is disabled

This commit is contained in:
Dean Herbert 2022-05-17 17:26:26 +09:00
parent 03d3900a02
commit 17e0105c2c

View File

@ -39,6 +39,9 @@ namespace osu.Game.Screens.Edit.Setup
protected override void OnFocus(FocusEvent e)
{
if (Current.Disabled)
return;
OnFocused?.Invoke();
base.OnFocus(e);