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
1 changed files with 3 additions and 0 deletions

View File

@ -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);