fix ui elements overriding

This commit is contained in:
MihailRis
2025-12-08 19:21:49 +03:00
committed by ShiftyX1
parent 5ae34c2dc2
commit d7f3bf9c7c
4 changed files with 8 additions and 5 deletions
+5 -2
View File
@@ -385,11 +385,14 @@ bool UINode::isSubnodeOf(const UINode* node) {
void UINode::getIndices(
const std::shared_ptr<UINode>& node,
std::unordered_map<std::string, std::shared_ptr<UINode>>& map
std::unordered_map<std::string, std::weak_ptr<UINode>>& map
) {
const std::string& id = node->getId();
if (!id.empty()) {
map[id] = node;
const auto& found = map.find(id);
if (found == map.end() || found->second.expired()) {
map[id] = node;
}
}
auto container = std::dynamic_pointer_cast<gui::Container>(node);
if (container) {