You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This bug occurs when you drag an element (mouse leftclick is down) and you also right click.
It basically binds the element to the pointer via a mousemove event.
I found a fix for this:
In dist/displace.js on line 302 i added this if statement:
This bug occurs when you drag an element (mouse leftclick is down) and you also right click.
It basically binds the element to the pointer via a mousemove event.
I found a fix for this:
In dist/displace.js on line 302 i added this if statement:
displace/dist/displace.js
Line 302 in 12561b1
if(e && e.button === 0)
events.mousemove = mousemove.bind(this, wOff, hOff);
it basically binds the mousemove event only if the event is triggered by the leftclick.
The text was updated successfully, but these errors were encountered: