sway

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

commit 77f99480ae2777c0d4458fcc01610cf7488b27c5
parent cd64df9b3a9bbe7ae47d0f431d6968289eb1b0a4
Author: D.B <thejan.2009@gmail.com>
Date:   Sat,  8 Oct 2016 09:07:11 +0200

draw indicator border only for non-floating

Diffstat:
Msway/border.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/border.c b/sway/border.c @@ -124,7 +124,7 @@ static void render_borders(swayc_t *view, cairo_t *cr, struct border_colors *col // right border int right_border = b->size.w - v->size.w - left_border; if (right_border > 0) { - if (is_only_child && layout == L_HORIZ) { + if (is_only_child && layout == L_HORIZ && !view->is_floating) { color = colors->indicator; } else { color = colors->child_border; @@ -150,7 +150,7 @@ static void render_borders(swayc_t *view, cairo_t *cr, struct border_colors *col // bottom border int bottom_border = b->size.h - (top_border + v->size.h); if (bottom_border > 0) { - if (is_only_child && layout == L_VERT) { + if (is_only_child && layout == L_VERT && !view->is_floating) { color = colors->indicator; } else { color = colors->child_border;