File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
frontends/rioterm/src/router Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,16 +78,16 @@ pub fn create_window_builder(
78
78
use rio_window:: platform:: windows:: WindowAttributesExtWindows ;
79
79
if let Some ( use_undecorated_shadow) = config. window . windows_use_undecorated_shadow
80
80
{
81
- window_builder = window_builder
82
- . with_undecorated_shadow ( use_undecorated_shadow) ;
81
+ window_builder =
82
+ window_builder . with_undecorated_shadow ( use_undecorated_shadow) ;
83
83
}
84
84
85
85
if let Some ( use_no_redirection_bitmap) =
86
86
config. window . windows_use_no_redirection_bitmap
87
87
{
88
88
// This sets WS_EX_NOREDIRECTIONBITMAP.
89
- window_builder = window_builder
90
- . with_no_redirection_bitmap ( use_no_redirection_bitmap) ;
89
+ window_builder =
90
+ window_builder . with_no_redirection_bitmap ( use_no_redirection_bitmap) ;
91
91
}
92
92
}
93
93
You can’t perform that action at this time.
0 commit comments