Load settings from config file

This commit is contained in:
dec05eba
2024-09-11 01:49:10 +02:00
parent 8746e8e43c
commit 234cc3391e
7 changed files with 136 additions and 26 deletions

View File

@@ -119,6 +119,10 @@ namespace gsr {
widgets.remove(widget);
}
void List::clear() {
widgets.clear();
}
void List::for_each_child_widget(std::function<bool(std::unique_ptr<Widget> &widget)> callback) {
widgets.for_each(callback);
}