Widgets Additions and sketch3d new gui
This commit is contained in:
parent
aecc75828b
commit
762268387e
44 changed files with 1015 additions and 322 deletions
|
|
@ -33,7 +33,11 @@ void LayoutManager::findDependencies(Widget* root) {
|
|||
Widget::dfs(root, [this](Widget* widget) { mDepGraph.insert({ widget, {} }); });
|
||||
|
||||
for (auto& [widget, deps] : mDepGraph) {
|
||||
if (!widget->isUpdate()) continue;
|
||||
|
||||
for (auto child : widget->mChildren) {
|
||||
// if (!child->isUpdate()) continue;
|
||||
|
||||
mDepGraph.insert({ child, {} });
|
||||
|
||||
if (auto depOrder = getLayoutOrder(widget->getLayout(), child->getLayout())) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue