mirror of
https://github.com/edubart/otclient.git
synced 2025-10-14 11:34:54 +02:00
optimize UIWidget for largers NPC trades
This commit is contained in:
@@ -133,6 +133,8 @@ void UIWidget::addChild(const UIWidgetPtr& child)
|
||||
return;
|
||||
}
|
||||
|
||||
UIWidgetPtr oldLastChild = getLastChild();
|
||||
|
||||
m_children.push_back(child);
|
||||
child->setParent(asUIWidget());
|
||||
|
||||
@@ -145,7 +147,12 @@ void UIWidget::addChild(const UIWidgetPtr& child)
|
||||
|
||||
// update new child states
|
||||
child->updateStates();
|
||||
updateChildrenIndexStates();
|
||||
|
||||
// update old child index states
|
||||
if(oldLastChild) {
|
||||
oldLastChild->updateState(Fw::MiddleState);
|
||||
oldLastChild->updateState(Fw::LastState);
|
||||
}
|
||||
|
||||
g_ui.onWidgetAppear(child);
|
||||
}
|
||||
@@ -714,8 +721,15 @@ void UIWidget::destroyChildren()
|
||||
if(layout)
|
||||
layout->disableUpdates();
|
||||
|
||||
while(!m_children.empty())
|
||||
m_children[0]->destroy();
|
||||
m_focusedChild = nullptr;
|
||||
m_lockedChildren.clear();
|
||||
while(!m_children.empty()) {
|
||||
UIWidgetPtr child = m_children.front();
|
||||
m_children.pop_front();
|
||||
child->setParent(nullptr);
|
||||
m_layout->removeWidget(child);
|
||||
child->destroy();
|
||||
}
|
||||
|
||||
layout->enableUpdates();
|
||||
}
|
||||
|
Reference in New Issue
Block a user