Fix select-all action in main view

This commit is contained in:
Nick O'Leary 2019-06-07 14:35:22 +01:00
parent 6f08bd6fc5
commit 460e3ad395
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 5 additions and 5 deletions

View File

@ -1412,11 +1412,11 @@ RED.view = (function() {
return;
}
}
}
if (!n.selected) {
n.selected = true;
n.dirty = true;
moving_set.push({n:n});
if (!n.selected) {
n.selected = true;
n.dirty = true;
moving_set.push({n:n});
}
}
});
if (mouse_mode !== RED.state.SELECTING_NODE && activeSubflow) {