From f76c6a557d53b6df3b93ab99a9699c1873b8e16c Mon Sep 17 00:00:00 2001 From: Joscha Date: Mon, 22 Aug 2022 20:36:30 +0200 Subject: [PATCH] Remove key binding A as alias for a while joining room --- src/ui/euph/room.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/euph/room.rs b/src/ui/euph/room.rs index 9378f36..d753595 100644 --- a/src/ui/euph/room.rs +++ b/src/ui/euph/room.rs @@ -328,7 +328,7 @@ impl EuphRoom { match status.ok().flatten() { Some(Status::Joining(Joining { bounce: Some(_), .. - })) if matches!(event, key!('a') | key!('A')) => { + })) if matches!(event, key!('a')) => { self.state = State::Auth(auth::new()); true }