mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28: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
|
self.queue
|
||||||
.push(InternalEvent::CompareCommits(b, None));
|
.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