sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 9ba72433b6c87086f2772405e09e8ac8c0136a01
parent 09fdcfe7dfa4e53c08a5acfbfd49e1a3b4eea6e3
Author: emersion <contact@emersion.fr>
Date:   Sat, 30 Jun 2018 13:23:27 +0100

Merge pull request #2179 from atomnuker/master

Fix crash with stacking layout after f42bf0ad4
Diffstat:
Msway/desktop/output.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -645,7 +645,7 @@ static void render_container_simple(struct sway_output *output, if (child->sway_view->border == B_NORMAL) { render_titlebar(output, damage, child, child->x, child->y, child->width, colors, title_texture, marks_texture); - } else if (con->sway_view->border != B_NONE) { + } else { render_top_border(output, damage, child, colors); } render_view(output, damage, child, colors);