1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 19:27:22 +03:00

cargo fmt

This commit is contained in:
Wez Furlong 2020-10-23 09:07:11 -07:00
parent e2311aaa73
commit 627d21cbac

View File

@ -1362,7 +1362,9 @@ impl KeyboardLayoutInfo {
self.update();
}
if vk <= u8::MAX.into() {
self.dead_keys.get(&(mods, vk as u8)).map(|dead| dead.dead_char)
self.dead_keys
.get(&(mods, vk as u8))
.map(|dead| dead.dead_char)
} else {
None
}