let alt key select text on grid items

This commit is contained in:
Til Schmitter 2026-05-01 17:55:00 +02:00
parent 1e928f2469
commit 335d02a7c0

View file

@ -6125,6 +6125,10 @@ var thegrid = (function () {
function gclick1(e) {
if (ctrl(e) && !treectl.csel && !r.sel)
return true;
else if (e.altKey){
ev(e);
return;
}
return gclick.call(this, e, false);
}