summaryrefslogtreecommitdiff
path: root/src/layout/incremental.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/layout/incremental.rs')
-rw-r--r--src/layout/incremental.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/incremental.rs b/src/layout/incremental.rs
index 19a41a22..2f6dccd0 100644
--- a/src/layout/incremental.rs
+++ b/src/layout/incremental.rs
@@ -230,7 +230,7 @@ impl FramesEntry {
let mut iter = regions.iter();
self.frames.iter().all(|frame| {
iter.next().map_or(false, |(current, base)| {
- frame.constraints.check(current, base, regions.expand)
+ frame.cts.check(current, base, regions.expand)
})
})
}
@@ -400,7 +400,7 @@ mod tests {
fn empty_frames() -> Vec<Constrained<Rc<Frame>>> {
vec![Constrained {
item: Rc::new(Frame::default()),
- constraints: Constraints::new(Spec::splat(false)),
+ cts: Constraints::new(Spec::splat(false)),
}]
}