From cd3a1e279327c76f89c6bcac643acf405a2d4aba Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 11 Oct 2021 11:14:25 +0200 Subject: [PATCH] branchlist: do not consume more-key (fixes #944) --- src/components/branchlist.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/branchlist.rs b/src/components/branchlist.rs index 34c7255b..5f7c1e64 100644 --- a/src/components/branchlist.rs +++ b/src/components/branchlist.rs @@ -281,6 +281,9 @@ impl Component for BranchListComponent { self.queue .push(InternalEvent::CompareCommits(b, None)); } + } else if e == self.key_config.cmd_bar_toggle { + //do not consume if its the more key + return Ok(EventState::NotConsumed); } }