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:
icxes 2026-05-23 17:02:49 +03:00
parent e2510cb2fa
commit 108103e217
No known key found for this signature in database

View file

@ -10123,7 +10123,8 @@ function reload_browser() {
window.addEventListener('dragstart', function(e) {
if (treectl.dsel && (is_selma || dragging)) {
e.preventDefault();
if (!QS('body.bbox-open'))
ev(e);
}
});
}