MCPcopy Create free account
hub / github.com/Illation/ETEngine / ProcessLayoutChanges

Method ProcessLayoutChanges

Engine/source/EtEditor/Layout/EditorBase.cpp:142–155  ·  view source on GitHub ↗

--------------------------------- EditorBase::ProcessLayoutChanges Split or collapse queued nodes based on their state

Source from the content-addressed store, hash-verified

140// Split or collapse queued nodes based on their state
141//
142void EditorBase::ProcessLayoutChanges()
143{
144 for (EditorToolNode* const node : m_QueuedSplits)
145 {
146 m_NodeHierachy.SplitNode(node, this);
147 }
148 m_QueuedSplits.clear();
149
150 for (EditorToolNode* const node : m_QueuedCollapse)
151 {
152 m_NodeHierachy.CollapseNode(node, this);
153 }
154 m_QueuedCollapse.clear();
155}
156
157
158} // namespace edit

Callers

nothing calls this directly

Calls 2

SplitNodeMethod · 0.80
CollapseNodeMethod · 0.80

Tested by

no test coverage detected