Skip to content

Commit 7ba9db9

Browse files
committed
relative --> absolute to fix selection regression
1 parent d58d3ae commit 7ba9db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/activity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6144,7 +6144,7 @@ class Activity {
61446144
let height = Math.abs(this.currentY - this.startY);
61456145

61466146
this.selectionArea.style.display = "flex";
6147-
this.selectionArea.style.position = "relative";
6147+
this.selectionArea.style.position = "absolute";
61486148
this.selectionArea.style.left = x + "px";
61496149
this.selectionArea.style.top = y + "px";
61506150
this.selectionArea.style.height = height + "px";

0 commit comments

Comments
 (0)