mirror of https://github.com/ppy/osu
Fix interaction with popover when textbox is disabled
This commit is contained in:
parent
03d3900a02
commit
17e0105c2c
|
@ -39,6 +39,9 @@ protected override bool OnDragStart(DragStartEvent e)
|
|||
|
||||
protected override void OnFocus(FocusEvent e)
|
||||
{
|
||||
if (Current.Disabled)
|
||||
return;
|
||||
|
||||
OnFocused?.Invoke();
|
||||
base.OnFocus(e);
|
||||
|
||||
|
|
Loading…
Reference in New Issue