Skip to content

Commit

Permalink
Fixed mouse event malfunctioning (#4021)
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyaranjan-panda authored Oct 1, 2024
1 parent 4fdfa32 commit 256f677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 256f677

Please sign in to comment.