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 @@ -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 }
You can’t perform that action at this time.
0 commit comments