diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-31 14:51:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 14:51:04 +0100 |
commit | e21a23348bd097d0b1d247a05324a8af92300851 (patch) | |
tree | 721700e04d2a02acba4c749c84b98b3544ab3364 /sway/tree/view.c | |
parent | e9c136b0eece9369622baaca9656307a919b3547 (diff) | |
parent | b0fb2846fe5b42d6a55762e90b0858d741cdba52 (diff) |
Merge pull request #3031 from atomnuker/master
Restore previous tabbed layout behavior
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r-- | sway/tree/view.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c index cf67acbb..4bc9e0f3 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -242,23 +242,23 @@ void view_autoconfigure(struct sway_view *view) { view->border_bottom = bottom_y != ws->y + ws->height; } + double x, y, width, height; + x = y = width = height = 0; + double y_offset = 0; + // In a tabbed or stacked container, the container's y is the top of the // title area. We have to offset the surface y by the height of the title, // bar, and disable any top border because we'll always have the title bar. - double y_offset = 0; enum sway_container_layout layout = container_parent_layout(con); - list_t *siblings = container_get_siblings(con); - if (siblings->length > 1 && !container_is_floating(con)) { - if (layout == L_TABBED) { - y_offset = container_titlebar_height(); - view->border_top = false; - } else if (layout == L_STACKED) { - y_offset = container_titlebar_height() * siblings->length; - view->border_top = false; - } + if (layout == L_TABBED && !container_is_floating(con)) { + y_offset = container_titlebar_height(); + view->border_top = false; + } else if (layout == L_STACKED && !container_is_floating(con)) { + list_t *siblings = container_get_siblings(con); + y_offset = container_titlebar_height() * siblings->length; + view->border_top = false; } - double x = 0, y = 0, width = 0, height = 0; switch (view->border) { case B_CSD: case B_NONE: |