notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 30b55abd72079dee4710e67a5752bc225398da0c
parent 63e195852b9a5fd19a6feab3f84c41fb5a6f6538
Author: William Casarin <jb55@jb55.com>
Date:   Sun, 11 Feb 2024 13:03:11 -0800

links: set hyperlink color to purple

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/app.rs | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/app.rs b/src/app.rs @@ -780,6 +780,7 @@ fn render_panel<'a>(ctx: &egui::Context, app: &'a mut Damus, timeline_ind: usize } fn set_app_style(ui: &mut egui::Ui) { + ui.visuals_mut().hyperlink_color = PURPLE; if ui.visuals().dark_mode { ui.visuals_mut().override_text_color = Some(egui::Color32::from_rgb(250, 250, 250)); ui.visuals_mut().panel_fill = egui::Color32::from_rgb(30, 30, 30);