Skip to content

Commit bdd166c

Browse files
committed
chore: fmt stuff
1 parent 370c301 commit bdd166c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

layershellev/src/lib.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2847,7 +2847,10 @@ impl<T: 'static> WindowState<T> {
28472847
let zxdgoutput =
28482848
xdg_output_manager.get_xdg_output(output_display, &qh, ());
28492849

2850-
window_state.xdg_info_cache.push((output_display.clone(), ZxdgOutputInfo::new(zxdgoutput.clone())));
2850+
window_state.xdg_info_cache.push((
2851+
output_display.clone(),
2852+
ZxdgOutputInfo::new(zxdgoutput.clone()),
2853+
));
28512854
if !window_state.is_allscreens() {
28522855
continue;
28532856
}
@@ -2984,7 +2987,9 @@ impl<T: 'static> WindowState<T> {
29842987
let output = match output_type {
29852988
OutputOption::Output(output) => Some(output),
29862989
OutputOption::OutputName(name) => {
2987-
window_state.xdg_info_cache.iter()
2990+
window_state
2991+
.xdg_info_cache
2992+
.iter()
29882993
.find(|(_, info)| info.name == *name)
29892994
.map(|(output, _)| output.clone())
29902995
}

0 commit comments

Comments
 (0)