Browse Source

Fix tooltip issue causing exception when node becomes cluster

fix2580
Uli Fahrer 7 years ago
committed by Uli Fahrer
parent
commit
1a3f786b8a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/network/modules/InteractionHandler.js

+ 1
- 1
lib/network/modules/InteractionHandler.js View File

@ -694,7 +694,7 @@ class InteractionHandler {
// we initially only check stillOnObj because this is much faster.
if (stillOnObj === true) {
let overNode = this.selectionHandler.getNodeAt(pointer);
stillOnObj = overNode.id === this.popup.popupTargetId;
stillOnObj = overNode === undefined ? false : overNode.id === this.popup.popupTargetId;
}
}
}

Loading…
Cancel
Save