From 6ffe5ec77c07ea0cc2268c170ae69f3448959acb Mon Sep 17 00:00:00 2001 From: Robert Fewell <14uBobIT@gmail.com> Date: Fri, 29 Sep 2017 10:39:44 +0100 Subject: [PATCH] Change the position of the double row on the cursor Move the double row down to bottom border + 1 line so it does not interfere with the cursor cells. --- gnucash/register/register-gnome/gnucash-sheet-private.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/register/register-gnome/gnucash-sheet-private.c b/gnucash/register/register-gnome/gnucash-sheet-private.c index 86bb688f9f..37fbe7dc8d 100644 --- a/gnucash/register/register-gnome/gnucash-sheet-private.c +++ b/gnucash/register/register-gnome/gnucash-sheet-private.c @@ -701,7 +701,7 @@ gnucash_sheet_draw_cursor (GnucashCursor *cursor, cairo_t *cr) cairo_stroke (cr); // make the bottom line thicker - cairo_move_to (cr, cursor->x - x + 0.5, cursor->y - y + cursor->h - 3.5); + cairo_move_to (cr, cursor->x - x + 0.5, cursor->y - y + cursor->h - 1.5); cairo_rel_line_to (cr, cursor->w, 0); cairo_set_line_width (cr, 1.0); cairo_stroke (cr);