File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments