In titlebar, render followers and allow following people

This commit is contained in:
Max Brunsfeld 2023-12-07 13:09:18 -08:00
parent 1fcd006b2a
commit 282e4398a0
2 changed files with 255 additions and 231 deletions

View file

@ -2839,3 +2839,9 @@ impl From<(&'static str, usize)> for ElementId {
ElementId::NamedInteger(name.into(), id)
}
}
impl From<(&'static str, u64)> for ElementId {
fn from((name, id): (&'static str, u64)) -> Self {
ElementId::NamedInteger(name.into(), id as usize)
}
}