mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
branchlist: do not consume more-key (fixes #944)
This commit is contained in:
parent
39400aac92
commit
cd3a1e2793
1 changed files with 3 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue