"...runtime/git@developer.sourcefind.cn:change/sglang.git" did not exist on "5fe79605a8f722623a6db7cd4d07017e5338ffe3"
Commit e9206a52 authored by Zentropivity's avatar Zentropivity
Browse files

Fix double click handling by not using faulty is_primary check

parent 963b68b8
...@@ -5801,7 +5801,7 @@ LGraphNode.prototype.executeAction = function(action) ...@@ -5801,7 +5801,7 @@ LGraphNode.prototype.executeAction = function(action)
var skip_action = false; var skip_action = false;
var now = LiteGraph.getTime(); var now = LiteGraph.getTime();
var is_primary = (e.isPrimary === undefined || !e.isPrimary); var is_primary = (e.isPrimary === undefined || !e.isPrimary);
var is_double_click = (now - this.last_mouseclick < 300) && is_primary; var is_double_click = (now - this.last_mouseclick < 300);
this.mouse[0] = e.clientX; this.mouse[0] = e.clientX;
this.mouse[1] = e.clientY; this.mouse[1] = e.clientY;
this.graph_mouse[0] = e.canvasX; this.graph_mouse[0] = e.canvasX;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment