This commit is contained in:
codeboss 2025-06-29 23:30:04 +08:00
parent 6769ada4b6
commit 452e11c145
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ void BehaviorsPresent::setRoot(std::shared_ptr<BehaviorMapNode> root)
_present_peers.clear(); _present_peers.clear();
this->_bind_maproot = root; this->_bind_maproot = root;
contentRelayout(); relayout();
} }
void BehaviorsPresent::presentAllocate(std::shared_ptr<LogicalNode> ins) void BehaviorsPresent::presentAllocate(std::shared_ptr<LogicalNode> ins)
@ -80,7 +80,7 @@ void BehaviorsPresent::presentRelease(std::shared_ptr<LogicalNode> ins)
} }
} }
void BehaviorsPresent::contentRelayout() void BehaviorsPresent::relayout()
{ {
if (!_bind_maproot) if (!_bind_maproot)
return; return;

View File

@ -60,7 +60,7 @@ public:
/// <summary> /// <summary>
/// 内容重新布局 /// 内容重新布局
/// </summary> /// </summary>
void contentRelayout(); void relayout();
/// <summary> /// <summary>
/// 尺寸测量 /// 尺寸测量
/// </summary> /// </summary>