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

@ -149,7 +149,7 @@ impl Rooms {
async fn rooms_widget(&mut self) -> BoxedWidget {
let rooms = self.stabilize_rooms().await;
let mut list = self.list.list().focus(true);
let mut list = self.list.widget().focus(true);
self.render_rows(&mut list, rooms).await;
list.into()
}