summaryrefslogtreecommitdiff
path: root/crates/typst-layout/src/grid/layouter.rs
diff options
context:
space:
mode:
authorPgBiel <9021226+PgBiel@users.noreply.github.com>2025-06-21 23:36:31 -0300
committerPgBiel <9021226+PgBiel@users.noreply.github.com>2025-06-28 22:39:35 -0300
commitd13617ed9b9dd95376b8d068b85513cba8b1b702 (patch)
treee738662b7c985fc2f4119ac1becb0d80ec45e8e1 /crates/typst-layout/src/grid/layouter.rs
parent315612b1f7be637c0c1a6a123f8802e09bee332a (diff)
skip layout of redundant gutter at the top of footertable-subfooters
Diffstat (limited to 'crates/typst-layout/src/grid/layouter.rs')
-rw-r--r--crates/typst-layout/src/grid/layouter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-layout/src/grid/layouter.rs b/crates/typst-layout/src/grid/layouter.rs
index fd846b6e..8e810e32 100644
--- a/crates/typst-layout/src/grid/layouter.rs
+++ b/crates/typst-layout/src/grid/layouter.rs
@@ -232,7 +232,7 @@ pub(super) enum Row {
impl Row {
/// Returns the `y` index of this row.
- fn index(&self) -> usize {
+ pub(super) fn index(&self) -> usize {
match self {
Self::Frame(_, y, _) => *y,
Self::Fr(_, y, _) => *y,