From ab2633e0386534934296e754bca34f23d15127a6 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sun, 24 Dec 2023 12:33:16 -0800 Subject: [PATCH] ui: brighter timeline text We still need to make the username bolder --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index a6798650..61094d66 100644 --- a/src/app.rs +++ b/src/app.rs @@ -429,7 +429,7 @@ fn render_note(ui: &mut egui::Ui, damus: &mut Damus, index: usize) { ui.with_layout(egui::Layout::top_down(egui::Align::LEFT), |ui| { render_username(ui, &damus.contacts, &ev.pubkey); - ui.weak(&ev.content); + ui.label(&ev.content); }) }) });