Merge pull request #403 from jnyfil/master

Fix auto-open bug in context menu
This commit is contained in:
Javi Agenjo
2023-07-17 11:18:22 +02:00
committed by GitHub

View File

@@ -13750,7 +13750,7 @@ LGraphNode.prototype.executeAction = function(action)
if (!disabled) {
element.addEventListener("click", inner_onclick);
}
if (options.autoopen) {
if (!disabled && options.autoopen) {
LiteGraph.pointerListenerAdd(element,"enter",inner_over);
}