mirror of
https://github.com/9001/copyparty.git
synced 2026-06-21 21:52:25 -06:00
let alt key select text on grid items
This commit is contained in:
parent
1e928f2469
commit
335d02a7c0
|
|
@ -6125,6 +6125,10 @@ var thegrid = (function () {
|
||||||
function gclick1(e) {
|
function gclick1(e) {
|
||||||
if (ctrl(e) && !treectl.csel && !r.sel)
|
if (ctrl(e) && !treectl.csel && !r.sel)
|
||||||
return true;
|
return true;
|
||||||
|
else if (e.altKey){
|
||||||
|
ev(e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
return gclick.call(this, e, false);
|
return gclick.call(this, e, false);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue