From 108103e217ed8f7197c171f1a5cad53d9579b037 Mon Sep 17 00:00:00 2001 From: icxes Date: Sat, 23 May 2026 17:02:49 +0300 Subject: [PATCH] don't prevent image drag when bbox is active fixes the rest of https://github.com/9001/copyparty/issues/1491 --- copyparty/web/browser.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 0421af93..6622c5c1 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -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); } }); }