mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-24 14:06:23 +01:00
[Graph Panel] Fix error when double shifting while selecting junctions.
This commit is contained in:
parent
075a93f4e6
commit
7801629f2a
1 changed files with 1 additions and 1 deletions
|
@ -1891,7 +1891,7 @@ function Panel_Graph(project = PROJECT) : PanelContent() constructor {
|
|||
array_push_unique(value_draggings, value_dragging);
|
||||
|
||||
for (var i = 0, n = array_length(_i); i < n; i++) {
|
||||
var _j = _l[| _i[i]];
|
||||
var _j = _l[_i[i]];
|
||||
if(_j.type == value_dragging.type)
|
||||
array_push_unique(value_draggings, _j);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue