Remove key binding A as alias for a while joining room

This commit is contained in:
Joscha 2022-08-22 20:36:30 +02:00
parent 3012de944b
commit f76c6a557d

View file

@ -328,7 +328,7 @@ impl EuphRoom {
match status.ok().flatten() { match status.ok().flatten() {
Some(Status::Joining(Joining { Some(Status::Joining(Joining {
bounce: Some(_), .. bounce: Some(_), ..
})) if matches!(event, key!('a') | key!('A')) => { })) if matches!(event, key!('a')) => {
self.state = State::Auth(auth::new()); self.state = State::Auth(auth::new());
true true
} }