diff options
Diffstat (limited to 'src/layout')
| -rw-r--r-- | src/layout/par.rs | 1 | ||||
| -rw-r--r-- | src/layout/stack.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/layout/par.rs b/src/layout/par.rs index 2a1ad941..3f971e12 100644 --- a/src/layout/par.rs +++ b/src/layout/par.rs @@ -95,7 +95,6 @@ impl<'a> ParLayouter<'a> { while !self.areas.current.fits(frame.size) { if self.areas.in_full_last() { // TODO: Diagnose once the necessary spans exist. - let _ = warning!("cannot fit frame into any area"); break; } else { self.finish_area(); diff --git a/src/layout/stack.rs b/src/layout/stack.rs index bfb93a94..7d1d7a12 100644 --- a/src/layout/stack.rs +++ b/src/layout/stack.rs @@ -80,7 +80,6 @@ impl<'a> StackLayouter<'a> { while !self.areas.current.fits(frame.size) { if self.areas.in_full_last() { // TODO: Diagnose once the necessary spans exist. - let _ = warning!("cannot fit frame into any area"); break; } else { self.finish_area(); |
