Improve layer panel positioning for upstream nodes (#1928)

* Improve layer panel positioning for upstream nodes

* highlight parents

* Final improvements

* Fill for selection box, bug fixes

* Code review

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
This commit is contained in:
adamgerhant 2024-08-14 03:27:42 -07:00 committed by GitHub
parent da13f21486
commit 2bd213f1aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 321 additions and 255 deletions

View file

@ -125,7 +125,7 @@ impl<'a, I: StaticType + 'static + Send + Sync + std::panic::UnwindSafe> Executo
Ok(result) => result.map_err(|e| e.into()),
Err(e) => {
Box::leak(e);
Err("Node graph execution paniced".into())
Err("Node graph execution panicked".into())
}
}
})