commit ab2633e0386534934296e754bca34f23d15127a6
parent de5d7c408832f312b3456f7d23db6a75a0cba692
Author: William Casarin <jb55@jb55.com>
Date:   Sun, 24 Dec 2023 12:33:16 -0800
ui: brighter timeline text
We still need to make the username bolder
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);
             })
         })
     });