fix deleting out put node

This commit is contained in:
shun-iwasawa 2023-04-11 11:47:25 +09:00 committed by manongjohn
parent f604b77a8e
commit 5a456adac6

View file

@ -29,9 +29,9 @@
class DVAPI TUndo {
public:
// To be called in the last of the block when undo
bool m_isLastInBlock;
bool m_isLastInBlock = true;
// To be called in the last of the block when redo
bool m_isLastInRedoBlock;
bool m_isLastInRedoBlock = true;
public:
TUndo() {}