diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-12-20 12:05:32 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-12-20 12:05:32 -0500 |
commit | 3082245243689e978186d6a6ba69972b050fb288 (patch) | |
tree | 364472d861aac5192e964a4984e1e63752e16c90 /sway/layout.c | |
parent | fdb9ce52ef7e8b4abce0e0d3b86c0bc67d7d943a (diff) | |
parent | e45fd9b6c5dfb858c6f86277351bc216574d8200 (diff) | |
download | sway-3082245243689e978186d6a6ba69972b050fb288.tar.xz |
Merge pull request #373 from sce/per_panel_config
Per panel config
Diffstat (limited to 'sway/layout.c')
-rw-r--r-- | sway/layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/layout.c b/sway/layout.c index 5b7dc486..6d82921c 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -455,8 +455,8 @@ static void arrange_windows_r(swayc_t *container, double width, double height) { struct panel_config *config = desktop_shell.panels->items[i]; if (config->output == output->handle) { struct wlc_size size = *wlc_surface_get_size(config->surface); - sway_log(L_DEBUG, "-> Found panel for this workspace: %ux%u, position: %u", size.w, size.h, desktop_shell.panel_position); - switch (desktop_shell.panel_position) { + sway_log(L_DEBUG, "-> Found panel for this workspace: %ux%u, position: %u", size.w, size.h, config->panel_position); + switch (config->panel_position) { case DESKTOP_SHELL_PANEL_POSITION_TOP: y += size.h; height -= size.h; break; |