We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b4274a commit c41a038Copy full SHA for c41a038
include/nodes/internal/FlowScene.hpp
@@ -52,7 +52,7 @@ class NODE_EDITOR_PUBLIC FlowScene
52
PortIndex portIndexOut,
53
TypeConverter const & converter = TypeConverter{});
54
55
- std::shared_ptr<Connection>restoreConnection(QJsonObject const &connectionJson);
+ std::shared_ptr<Connection> restoreConnection(QJsonObject const &connectionJson);
56
57
void deleteConnection(Connection& connection);
58
src/FlowScene.cpp
@@ -230,6 +230,7 @@ restoreNode(QJsonObject const& nodeJson)
230
auto nodePtr = node.get();
231
_nodes[node->id()] = std::move(node);
232
233
+ nodePlaced(*nodePtr);
234
nodeCreated(*nodePtr);
235
return *nodePtr;
236
}
0 commit comments