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
@@ -77,7 +77,7 @@ std::shared_ptr<UINode> create_debug_panel(
}));
for (int ax = 0; ax < 3; ax++) {
auto sub = std::make_shared<Container>(glm::vec2(), glm::vec2(250, 27));
auto sub = std::make_shared<Container>(glm::vec2(250, 27));
std::wstring str = L"x: ";
str[0] += ax;