use markup in tooltip

This commit is contained in:
yggverse 2024-12-05 13:14:46 +02:00
parent cb08217ffa
commit d6dc6acf04
2 changed files with 4 additions and 4 deletions

View File

@ -79,12 +79,12 @@ impl Gemini {
.iter() .iter()
.filter(|this| this.profile_identity_gemini_id == identity.id) .filter(|this| this.profile_identity_gemini_id == identity.id)
{ {
auth_scope.push(auth.scope.clone()) auth_scope.push(format!("<small>{}</small>", auth.scope.clone()))
} }
// Build tooltip // Build tooltip
let mut tooltip = format!( let mut tooltip = format!(
"Valid:\n{}\n{}", "<b>valid</b>\n<small>{}</small> - <small>{}</small>",
certificate certificate
.not_valid_before() .not_valid_before()
.unwrap() .unwrap()
@ -98,7 +98,7 @@ impl Gemini {
); );
if auth_scope.len() > 0 { if auth_scope.len() > 0 {
tooltip.push_str(&format!("\n\nScope:\n{}", auth_scope.join("\n"))); tooltip.push_str(&format!("\n\n<b>scope</b>\n{}", auth_scope.join("\n")));
} }
// Append record option // Append record option

View File

@ -66,7 +66,7 @@ impl List {
let subtitle = child.last_child().unwrap().downcast::<Label>().unwrap(); let subtitle = child.last_child().unwrap().downcast::<Label>().unwrap();
subtitle.set_label(&item.subtitle()); subtitle.set_label(&item.subtitle());
subtitle.set_tooltip_text(Some(&item.tooltip())); subtitle.set_tooltip_markup(Some(&item.tooltip()));
}); });
// Init main `DropDown` // Init main `DropDown`