Add focus and hiding options to editor

This commit is contained in:
Joscha 2022-08-22 17:12:07 +02:00
parent e24a5ee1c4
commit 84930c8c34
3 changed files with 38 additions and 20 deletions

View file

@ -190,7 +190,7 @@ impl EuphRoom {
match &self.state {
State::Normal => {}
State::Auth(_) => layers.push(auth::widget()),
State::Auth(editor) => layers.push(auth::widget(editor)),
State::Nick(editor) => layers.push(nick::widget(editor)),
}