1
0
Fork 0
This commit is contained in:
Enoch Riese 2022-07-16 08:17:37 -04:00
parent fceb785a6b
commit a1b80dd263
2 changed files with 10 additions and 10 deletions

View file

@ -18,7 +18,7 @@ const Draft = props => {
...patternProps.autoLayout,
width: patternProps.width,
height: patternProps.height
}, false, false)
}, false)
}
}, [layout])
@ -49,7 +49,7 @@ const Draft = props => {
newLayout.height = bottomRight.y - topLeft.y
newLayout.bottomRight = bottomRight
newLayout.topLeft = topLeft
updateGist(['layout'], newLayout, false, history)
updateGist(['layout'], newLayout, history)
}