1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-14 03:16:09 +03:00

fix formatting

This commit is contained in:
Wez Furlong 2022-04-01 08:15:32 -07:00
parent 8ba0ef2375
commit 67218d3a85

View File

@ -717,11 +717,7 @@ impl WindowOps for Window {
// a tweak to look good around the notch.
// <https://github.com/wez/wezterm/issues/1737#issuecomment-1085923867>
let top = insets.top.ceil() as usize;
let top = if top > 0 {
top + 2
} else {
0
};
let top = if top > 0 { top + 2 } else { 0 };
Some(Border {
top: ULength::new(top),
left: ULength::new(insets.left.ceil() as usize),