feat(note-view): show note client

This commit is contained in:
Fernando López Guevara
2025-07-01 13:44:56 -03:00
parent cb5bd75236
commit 4bf75c95de
14 changed files with 113 additions and 53 deletions

View File

@@ -261,9 +261,9 @@ enum ProfileType {
fn handle_link(ui: &mut egui::Ui, website_url: &str) {
let img = if ui.visuals().dark_mode {
app_images::link_image()
app_images::link_dark_image()
} else {
app_images::link_image().tint(egui::Color32::BLACK)
app_images::link_light_image()
};
ui.add(img);