We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a488e81 commit de2d4e7Copy full SHA for de2d4e7
src/LiveDevelopment/BrowserScripts/RemoteFunctions.js
@@ -4637,8 +4637,9 @@ function RemoteFunctions(config = {}) {
4637
}
4638
4639
function onElementHover(event) {
4640
- // don't want highlighting and stuff when auto scrolling
4641
- if (_isAutoScrolling) {
+ // don't want highlighting and stuff when auto scrolling or when dragging (svgs)
+ // for dragging normal html elements its already taken care of...so we just add svg drag checking
4642
+ if (_isAutoScrolling || window._isDraggingSVG) {
4643
return;
4644
4645
0 commit comments