summaryrefslogtreecommitdiff
path: root/library/src/math/stack.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-01-29 19:04:48 +0100
committerLaurenz <laurmaedje@gmail.com>2023-01-29 19:11:44 +0100
commitf7458f9533d28b95dcd71b20166a5961f358e824 (patch)
treeb574d955a01d87a6b1b07f0eb0c78271f3738f30 /library/src/math/stack.rs
parent0911c709a8cc819946f8099af6d2e4bffef505a6 (diff)
Matrices
Diffstat (limited to 'library/src/math/stack.rs')
-rw-r--r--library/src/math/stack.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/math/stack.rs b/library/src/math/stack.rs
index ec233cd9..3a47059c 100644
--- a/library/src/math/stack.rs
+++ b/library/src/math/stack.rs
@@ -292,7 +292,7 @@ pub(super) fn stack(
let points = alignments(&rows);
let rows: Vec<_> = rows
.into_iter()
- .map(|row| row.to_line_frame(ctx, &points, align))
+ .map(|row| row.to_aligned_frame(ctx, &points, align))
.collect();
for row in &rows {