mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-18 13:30:29 +00:00
input: fix performable bindings
This commit is contained in:
@@ -2941,8 +2941,8 @@ fn maybeHandleBinding(
|
||||
// actions perform.
|
||||
var performed: bool = false;
|
||||
for (actions) |action| {
|
||||
if (self.performBindingAction(action)) |_| {
|
||||
performed = true;
|
||||
if (self.performBindingAction(action)) |performed_| {
|
||||
performed = performed or performed_;
|
||||
} else |err| {
|
||||
log.info(
|
||||
"key binding action failed action={t} err={}",
|
||||
|
||||
Reference in New Issue
Block a user