Render editor and pseudo message

This commit is contained in:
Joscha 2022-08-01 23:37:41 +02:00
parent 4ead592e59
commit 415da3afd8
6 changed files with 132 additions and 42 deletions

View file

@ -184,7 +184,7 @@ impl Ui {
async fn widget(&mut self) -> BoxedWidget {
match self.mode {
Mode::Main => self.rooms.widget().await,
Mode::Log => self.log_chat.widget().into(),
Mode::Log => self.log_chat.widget(String::new()).into(),
}
}