include dirty state in history event

This commit is contained in:
Steve-Mcl 2022-07-08 14:09:54 +01:00
parent e308e02f9d
commit 639030924f
1 changed files with 2 additions and 0 deletions

View File

@ -1089,6 +1089,7 @@ RED.view.tools = (function() {
linkGroups.sort(function(A,B) {
return groupedLinks[B].length - groupedLinks[A].length
})
const wasDirty = RED.nodes.dirty()
linkGroups.forEach(function(gid) {
var links = groupedLinks[gid]
var junction = {
@ -1179,6 +1180,7 @@ RED.view.tools = (function() {
})
if (addedJunctions.length > 0) {
RED.history.push({
dirty: wasDirty,
t: 'add',
links: addedLinks,
junctions: addedJunctions,