Fix regressions from network interface PR (#1906)

* Fix regressions

* Remove unnecessary graph render in box selection

* Improve stack positioning

* Store layer stacks as absolute position

* Improve automatically creating chains

* Improve group selection

* Increase horizontal layer spacing by 1

* Fix export crash and demo artwork

* Improve inserting node onto wire, fix spline crash

* Remove comment
This commit is contained in:
adamgerhant
2024-08-07 01:03:12 -07:00
committed by GitHub
parent e46af89708
commit 8041b1237c
14 changed files with 436 additions and 190 deletions

View File

@@ -396,6 +396,10 @@ fn splines_from_points(mut vector_data: VectorData) -> VectorData {
vector_data.segment_domain.clear();
if points.positions().is_empty() {
return vector_data;
}
let first_handles = bezier_rs::solve_spline_first_handle(points.positions());
let stroke_id = StrokeId::ZERO;