Use List widget for nick list

This commit is contained in:
Joscha 2022-07-12 19:26:46 +02:00
parent da6bab4b13
commit dea0384162
4 changed files with 26 additions and 251 deletions

View file

@ -266,6 +266,10 @@ impl<Id> List<Id> {
self
}
pub fn is_empty(&self) -> bool {
self.rows.is_empty()
}
pub fn add_unsel<S: Into<Styled>>(&mut self, styled: S) {
self.rows.push(Row::Unselectable(styled.into()));
}