fix hide column picking when not clicking on the name

This commit is contained in:
Til Schmitter 2026-05-01 20:46:06 +02:00
parent cc21cc8966
commit 9f3a23eb25

View file

@ -8949,7 +8949,10 @@ var filecols = (function () {
if (toast.tag == 'pickhide')
toast.hide();
r.hide(e.target.textContent);
if(e.target.lastChild)
r.hide(e.target.lastChild.textContent)
else
r.hide(e.target.textContent);
};
};
r.picking = true;