add read-only UI contentOffset property

This commit is contained in:
MihailRis
2024-10-15 05:56:15 +03:00
parent fbca439b2d
commit 08ebfa15db
7 changed files with 86 additions and 79 deletions
+1 -1
View File
@@ -152,7 +152,7 @@ float UINode::getTooltipDelay() const {
glm::vec2 UINode::calcPos() const {
if (parent) {
return pos + parent->calcPos() + parent->contentOffset();
return pos + parent->calcPos() + parent->getContentOffset();
}
return pos;
}