From e32cfedfcfbbdb4857b0b062eb1a1051412519be Mon Sep 17 00:00:00 2001 From: grovesNL Date: Tue, 25 Oct 2022 23:12:48 -0230 Subject: [PATCH] Make `font_matches` public for now --- src/buffer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer.rs b/src/buffer.rs index 15ab6c2..d53fb92 100644 --- a/src/buffer.rs +++ b/src/buffer.rs @@ -237,7 +237,7 @@ impl TextBufferLine { /// A buffer of text that is shaped and laid out pub struct TextBuffer<'a> { - font_matches: FontMatches<'a>, + pub font_matches: FontMatches<'a>, attrs: Attrs<'a>, lines: Vec, metrics: TextMetrics,