mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-11 04:35:24 +01:00
[Line] Fix error when previewing array of paths.
This commit is contained in:
parent
a08fdc5bb9
commit
b452ac8232
2 changed files with 1 additions and 2 deletions
Binary file not shown.
|
@ -1882,8 +1882,7 @@ function NodeValue(_name, _node, _connect, _type, _value, _tooltip = "") constru
|
|||
|
||||
case VALUE_TYPE.pathnode :
|
||||
var _path = getValue();
|
||||
if(struct_has(_path, "drawOverlay"))
|
||||
return _path.drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny);
|
||||
if(is_struct(_path) && struct_has(_path, "drawOverlay")) return _path.drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue