From 256f677831300ed94cfc9d8171c33901bd855e73 Mon Sep 17 00:00:00 2001 From: Soumyaranjan Panda <84384924+soumyaranjan-panda@users.noreply.github.com> Date: Wed, 2 Oct 2024 00:32:40 +0530 Subject: [PATCH] Fixed mouse event malfunctioning (#4021) --- js/activity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/activity.js b/js/activity.js index 9fbe7e48c..4ee9b1d93 100644 --- a/js/activity.js +++ b/js/activity.js @@ -6112,7 +6112,7 @@ class Activity { document.addEventListener("mousemove", (event) => { this.hasMouseMoved = true; - event.preventDefault(); + // event.preventDefault(); // this.selectedBlocks = []; if (this.isDragging){ this.currentX = event.clientX;