notecrumbs

a nostr opengraph server build on nostrdb and egui
git clone git://jb55.com/notecrumbs
Log | Files | Refs | README | LICENSE

commit f0b8cf69c257b7dea8ed2af560b026ee02a60976
parent b86a552cde98c42acf072d046cb799a85ca79a43
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 21 Dec 2023 11:09:44 -0800

remove negative kerning

Diffstat:
Msrc/render.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/render.rs b/src/render.rs @@ -295,7 +295,7 @@ fn wrapped_body(ui: &mut egui::Ui, text: &str) { let format = TextFormat { font_id: FontId::proportional(52.0), color: Color32::WHITE, - extra_letter_spacing: -2.5, + extra_letter_spacing: 0.0, line_height: Some(50.0), ..Default::default() };