diff options
Diffstat (limited to 'graphics/src')
-rw-r--r-- | graphics/src/text.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/graphics/src/text.rs b/graphics/src/text.rs index 7c4b5e31..217a23e2 100644 --- a/graphics/src/text.rs +++ b/graphics/src/text.rs @@ -98,12 +98,7 @@ pub fn measure(buffer: &cosmic_text::Buffer) -> Size { (run.line_w.max(width), total_lines + 1) }); - let (max_width, max_height) = buffer.size(); - - Size::new( - width.min(max_width), - (total_lines as f32 * buffer.metrics().line_height).min(max_height), - ) + Size::new(width, total_lines as f32 * buffer.metrics().line_height) } /// Returns the attributes of the given [`Font`]. |