reduce width of tree overflow preview

This commit is contained in:
Til Schmitter 2026-04-27 22:34:16 +02:00
parent a6963aaa64
commit f68b4fb0e7

View file

@ -7918,11 +7918,15 @@ var treectl = (function () {
this.style.top = y + 'px';
this.style.position = 'fixed';
this.style.width = 'auto';
this.style.minWidth = ebi('tree').offsetWidth + p.offsetLeft - 5 + 'px';
mentered = this;
}
function mleave(e) {
this.style.position = '';
this.style.minWidth = '';
this.style.width = '';
mentered = null;
}