mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-28 21:32:39 +00:00
Apply a slight stylistic tweak
This commit is contained in:
parent
75ec5c3b1b
commit
2e97e2dbfd
1 changed files with 2 additions and 4 deletions
|
@ -301,9 +301,7 @@ impl Keystroke {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if key.is_none() {
|
let key = key.ok_or_else(|| anyhow!("Invalid keystroke `{}`", source))?;
|
||||||
return Err(anyhow!("Invalid keystroke `{}`", source));
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(Keystroke {
|
Ok(Keystroke {
|
||||||
ctrl,
|
ctrl,
|
||||||
|
@ -311,7 +309,7 @@ impl Keystroke {
|
||||||
shift,
|
shift,
|
||||||
cmd,
|
cmd,
|
||||||
function,
|
function,
|
||||||
key: key.unwrap(),
|
key,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue