From 39cf4770906989ddef52cd6352d3799f9d7e9e93 Mon Sep 17 00:00:00 2001 From: Connor E <38229097+c-edw@users.noreply.github.com> Date: Tue, 22 Jan 2019 08:23:38 +0000 Subject: swaynag: Small graphical fix, add offset of +1 to X/Y. --- swaynag/render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'swaynag') diff --git a/swaynag/render.c b/swaynag/render.c index 661e27a1..c9f4ef1d 100644 --- a/swaynag/render.c +++ b/swaynag/render.c @@ -191,8 +191,8 @@ static uint32_t render_button(cairo_t *cairo, struct swaynag *swaynag, return ideal_surface_height; } - button->x = *x - border - text_width - padding * 2; - button->y = (int)(ideal_height - text_height) / 2 - padding; + button->x = *x - border - text_width - padding * 2 + 1; + button->y = (int)(ideal_height - text_height) / 2 - padding + 1; button->width = text_width + padding * 2; button->height = text_height + padding * 2; -- cgit v1.2.3-54-g00ecf