Fix edit inputbox covered new freeEntries

This commit is contained in:
nathan 2022-09-12 12:47:45 -06:00
parent e52ab349e6
commit 4c00b812ee

View File

@ -948,6 +948,11 @@ export const Et2WithSearchMixin = <T extends Constructor<LitElement>>(superclass
{
this.handleMenuSlotChange();
});
// If we were overlapping edit inputbox with the value display, reset
if(this._activeControls.classList.contains("novalue"))
{
this.handleMenuShow();
}
return true;
}