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