From fbf6d20e05f5ba4b92d838972bea25f11a6c8227 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fernando=20Tarl=C3=A1=20Cardoso=20Lemos?= Date: Sun, 18 Dec 2011 12:53:26 -0200 Subject: [PATCH] Fix the signal handler popup text. Thanks to Michael for the heads-up. --- src/sighandler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sighandler.c b/src/sighandler.c index 86366413..4a0c13b5 100644 --- a/src/sighandler.c +++ b/src/sighandler.c @@ -51,7 +51,7 @@ static int sig_draw_window(xcb_window_t win, int width, int height, int font_hei for (int i = 0; i < sizeof(crash_text) / sizeof(char*); i++) { draw_text(crash_text[i], strlen(crash_text[i]), false, pixmap, pixmap_gc, - 8, 3 + (i - 1) * font_height, width - 16); + 8, 5 + i * font_height, width - 16); } /* Copy the contents of the pixmap to the real window */ -- 2.39.5