Et2TreeDropdown: Don't need to blur all the time

This commit is contained in:
nathan 2024-10-07 17:02:18 -06:00
parent c1f902c471
commit 9f90aaf085

View File

@ -516,7 +516,10 @@ export class Et2TreeDropdown extends SearchMixin<Constructor<any> & Et2InputWidg
event.preventDefault(); event.preventDefault();
this.hide() this.hide()
} }
this.blur(); if(this.hasFocus)
{
this.blur();
}
} }
private handleFocus() private handleFocus()