@@ -82,14 +82,15 @@ void arrange_layers(struct sway_output *output) {
82
82
& usable_area .width , & usable_area .height );
83
83
const struct wlr_box full_area = usable_area ;
84
84
85
- arrange_surface (output , & full_area , & usable_area , output -> layers .shell_background , true);
86
- arrange_surface (output , & full_area , & usable_area , output -> layers .shell_background , false);
87
- arrange_surface (output , & full_area , & usable_area , output -> layers .shell_bottom , true);
88
- arrange_surface (output , & full_area , & usable_area , output -> layers .shell_bottom , false);
89
- arrange_surface (output , & full_area , & usable_area , output -> layers .shell_top , true);
90
- arrange_surface (output , & full_area , & usable_area , output -> layers .shell_top , false);
91
85
arrange_surface (output , & full_area , & usable_area , output -> layers .shell_overlay , true);
86
+ arrange_surface (output , & full_area , & usable_area , output -> layers .shell_top , true);
87
+ arrange_surface (output , & full_area , & usable_area , output -> layers .shell_bottom , true);
88
+ arrange_surface (output , & full_area , & usable_area , output -> layers .shell_background , true);
89
+
92
90
arrange_surface (output , & full_area , & usable_area , output -> layers .shell_overlay , false);
91
+ arrange_surface (output , & full_area , & usable_area , output -> layers .shell_top , false);
92
+ arrange_surface (output , & full_area , & usable_area , output -> layers .shell_bottom , false);
93
+ arrange_surface (output , & full_area , & usable_area , output -> layers .shell_background , false);
93
94
94
95
if (!wlr_box_equal (& usable_area , & output -> usable_area )) {
95
96
sway_log (SWAY_DEBUG , "Usable area changed, rearranging output" );
0 commit comments