mirror of
https://github.com/9001/copyparty.git
synced 2026-06-22 05:53:29 -06:00
don't prevent image drag when bbox is active
fixes the rest of https://github.com/9001/copyparty/issues/1491
This commit is contained in:
parent
e2510cb2fa
commit
108103e217
|
|
@ -10123,7 +10123,8 @@ function reload_browser() {
|
||||||
|
|
||||||
window.addEventListener('dragstart', function(e) {
|
window.addEventListener('dragstart', function(e) {
|
||||||
if (treectl.dsel && (is_selma || dragging)) {
|
if (treectl.dsel && (is_selma || dragging)) {
|
||||||
e.preventDefault();
|
if (!QS('body.bbox-open'))
|
||||||
|
ev(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue