Skip to content

Commit cd3a1e2

Browse files
author
Stephan Dilly
committed
branchlist: do not consume more-key (fixes #944)
1 parent 39400aa commit cd3a1e2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/branchlist.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@ impl Component for BranchListComponent {
281281
self.queue
282282
.push(InternalEvent::CompareCommits(b, None));
283283
}
284+
} else if e == self.key_config.cmd_bar_toggle {
285+
//do not consume if its the more key
286+
return Ok(EventState::NotConsumed);
284287
}
285288
}
286289

0 commit comments

Comments
 (0)