Use List widget for nick list
This commit is contained in:
parent
da6bab4b13
commit
dea0384162
4 changed files with 26 additions and 251 deletions
|
|
@ -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()));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue