Make List widget naming more consistent

This commit is contained in:
Joscha 2022-07-23 19:50:49 +02:00
parent 5f28ff0ffd
commit 709ab07442
3 changed files with 3 additions and 3 deletions

View file

@ -234,7 +234,7 @@ impl EuphRoom {
}
fn nick_list_widget(&self, joined: &Joined) -> BoxedWidget {
let mut list = self.nick_list.list();
let mut list = self.nick_list.widget();
Self::render_nick_list_rows(&mut list, joined);
list.into()
}