aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-07-28 19:45:58 -0400
committerLibravatar GitHub <noreply@github.com>2016-07-28 19:45:58 -0400
commit762a6736013281133f6119e1829e5d6d5cc79834 (patch)
treec20ccbcbf5b06c19f411dfc92a4ec9bffc33c259
parentMerge pull request #796 from Hummer12007/ipc_sub (diff)
parentthird try for #678 (diff)
downloadsway-762a6736013281133f6119e1829e5d6d5cc79834.tar.gz
sway-762a6736013281133f6119e1829e5d6d5cc79834.tar.zst
sway-762a6736013281133f6119e1829e5d6d5cc79834.zip
Merge pull request #800 from zandrmartin/fix-swaybar-take-3
third try for #678
-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