add 'scroll' container property

This commit is contained in:
MihailRis
2025-03-21 05:31:46 +03:00
parent a8067ad9d6
commit 2ee0605f1f
5 changed files with 35 additions and 2 deletions
+4
View File
@@ -226,6 +226,10 @@ void Container::refresh() {
});
}
void Container::setScroll(int scroll) {
this->scroll = scroll;
}
const std::vector<std::shared_ptr<UINode>>& Container::getNodes() const {
return nodes;
}