removed 'coord' ui elements contructors argument

This commit is contained in:
MihailRis
2024-03-06 09:56:10 +03:00
parent c71c918a9c
commit a80e7e4220
9 changed files with 41 additions and 36 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ static std::shared_ptr<UINode> readLabel(UiXmlReader& reader, xml::xmlelement el
}
static std::shared_ptr<UINode> readContainer(UiXmlReader& reader, xml::xmlelement element) {
auto container = std::make_shared<Container>(glm::vec2(), glm::vec2());
auto container = std::make_shared<Container>(glm::vec2());
_readContainer(reader, element, *container);
return container;
}