Skip to content

Commit 29c73ab

Browse files
dcxoDecodetalkers
authored andcommitted
chore: fmt stuff
1 parent 270a363 commit 29c73ab

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
@@ -2832,7 +2832,10 @@ impl<T: 'static> WindowState<T> {
28322832
let zxdgoutput =
28332833
xdg_output_manager.get_xdg_output(output_display, &qh, ());
28342834

2835-
window_state.xdg_info_cache.push((output_display.clone(), ZxdgOutputInfo::new(zxdgoutput.clone())));
2835+
window_state.xdg_info_cache.push((
2836+
output_display.clone(),
2837+
ZxdgOutputInfo::new(zxdgoutput.clone()),
2838+
));
28362839
if !window_state.is_allscreens() {
28372840
continue;
28382841
}
@@ -2970,7 +2973,9 @@ impl<T: 'static> WindowState<T> {
29702973
let output = match output_type {
29712974
OutputOption::Output(output) => Some(output),
29722975
OutputOption::OutputName(name) => {
2973-
window_state.xdg_info_cache.iter()
2976+
window_state
2977+
.xdg_info_cache
2978+
.iter()
29742979
.find(|(_, info)| info.name == *name)
29752980
.map(|(output, _)| output.clone())
29762981
}

0 commit comments

Comments
 (0)