From c6cf2bc5210d606a00ade5ecf53237cacd4a92f5 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 11 Feb 2024 04:03:01 +0100 Subject: Fix clipping of text in `iced_tiny_skia` --- graphics/src/text.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'graphics/src/text.rs') 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`]. -- cgit