From df42696bdb3810a5cb1e917e115231029e6eee3d Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Thu, 8 Jul 2021 11:36:46 -0700 Subject: [PATCH] core: position sequence in sequence's context --- app/core.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/app/core.cpp b/app/core.cpp index 4b9f7159d..0938330af 100644 --- a/app/core.cpp +++ b/app/core.cpp @@ -421,6 +421,7 @@ void Core::CreateNewSequence() command->add_child(new NodeAddCommand(active_project, new_sequence)); command->add_child(new FolderAddChild(GetSelectedFolderInActiveProject(), new_sequence)); + command->add_child(new NodeSetPositionCommand(new_sequence, new_sequence, QPointF(0, 0), false)); // Create and connect default nodes to new sequence new_sequence->add_default_nodes(command);