From 9b6181449b5e56ae13ef7ef51e5678e5db1e1ea6 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 4 May 2014 21:23:13 -0400 Subject: draw the correct size box for the cursor --- src/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.c b/src/display.c index fe06883..95c13e8 100644 --- a/src/display.c +++ b/src/display.c @@ -121,7 +121,7 @@ void runes_display_draw_cursor(RunesTerm *t, cairo_t *cr) cr, col * t->fontx + 0.5, (row + t->scr.row_visible_offset) * t->fonty + 0.5, - t->fontx, t->fonty); + t->fontx - 1, t->fonty - 1); cairo_stroke(cr); } else { -- cgit v1.2.3-54-g00ecf