Skip to content

Commit 8454abb

Browse files
committed
fix: drag drop not working because mouse down is blocked
1 parent b625cfc commit 8454abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LiveDevelopment/BrowserScripts/RemoteFunctions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3964,7 +3964,7 @@ function RemoteFunctions(config = {}) {
39643964
// Create an object to store handler references
39653965
_interactionBlockerHandlers = {};
39663966

3967-
const eventsToBlock = ["click", "dblclick", "mousedown", "mouseup"];
3967+
const eventsToBlock = ["click", "dblclick"];
39683968

39693969
eventsToBlock.forEach(eventType => {
39703970
// Create a named handler function so we can remove it later

0 commit comments

Comments
 (0)