aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/handlers.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 05da5700..405df1c8 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -269,6 +269,7 @@ static bool handle_view_created(wlc_handle handle) {
269 wlc_view_set_mask(handle, VISIBLE); 269 wlc_view_set_mask(handle, VISIBLE);
270 wlc_view_set_output(handle, panel_config->output); 270 wlc_view_set_output(handle, panel_config->output);
271 wlc_view_bring_to_front(handle); 271 wlc_view_bring_to_front(handle);
272 arrange_windows(&root_container, -1, -1);
272 return true; 273 return true;
273 } 274 }
274 275