sway

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

commit 3488fbc85952c617c304e6e1b84015c9c6a30651
parent 34b864fb1752fde2528db6aa86d53c23412a8f43
Author: Brian Ashworth <bosrsf04@gmail.com>
Date:   Mon, 14 May 2018 01:46:53 -0400

Fix y and height for a hidden top normal border

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

diff --git a/sway/tree/view.c b/sway/tree/view.c @@ -152,14 +152,12 @@ void view_autoconfigure(struct sway_view *view) { case B_NORMAL: // Height is: border + title height + border + view height + border x = view->swayc->x + view->border_thickness * view->border_left; - y = view->swayc->y + config->font_height - + view->border_thickness * (view->border_top + 1); + y = view->swayc->y + config->font_height + view->border_thickness * 2; width = view->swayc->width - view->border_thickness * view->border_left - view->border_thickness * view->border_right; height = view->swayc->height - config->font_height - - view->border_thickness * (view->border_top + 1) - - view->border_thickness * view->border_bottom; + - view->border_thickness * (2 + view->border_bottom); break; }