diff --git a/src/litegraph.js b/src/litegraph.js index 24923d59c..4200d33e8 100755 --- a/src/litegraph.js +++ b/src/litegraph.js @@ -1639,7 +1639,7 @@ const globalExport = {}; * @return {LGraphGroup | null} the group or null */ getGroupOnPos(x, y, {margin = 2} = {}) { - return this._groups.reverse().find(g => g.isPointInside(x, y, margin)); + return this._groups.reverse().find(g => g.isPointInside(x, y, margin, /* skip_title */true)); } /**