Skip to content

Commit 39eb05b

Browse files
committed
feat: add missing initializers
1 parent bbc981d commit 39eb05b

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/layout/flex.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@ mod tests {
570570
position: None,
571571
x: None,
572572
y: None,
573+
overlays: vec![],
573574
}
574575
}
575576

@@ -816,6 +817,7 @@ mod tests {
816817
position: None,
817818
x: None,
818819
y: None,
820+
overlays: vec![],
819821
},
820822
shape_child(100.0, 40.0),
821823
];

src/layout/grid.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ mod tests {
367367
position: None,
368368
x: None,
369369
y: None,
370+
overlays: vec![],
370371
}
371372
}
372373

src/layout/stack.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ mod tests {
9797
position: Some(PositionMode::Absolute { x, y }),
9898
x: None,
9999
y: None,
100+
overlays: vec![],
100101
}
101102
}
102103

0 commit comments

Comments
 (0)