Skip to content

Commit

Permalink
Replace the thicker lower line for the cursor, removed by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob-IT committed Aug 3, 2017
1 parent efe2aef commit 64d4ec3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/register/register-gnome/gnucash-sheet-private.c
Expand Up @@ -707,6 +707,11 @@ gnucash_sheet_draw_cursor (GnucashCursor *cursor, cairo_t *cr)
cairo_set_line_width (cr, 1.0);
cairo_stroke (cr);

// make the bottom line thicker
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_stroke (cr);

/* draw rectangle around the active cell */
cairo_set_source_rgb (cr, fg_color->red, fg_color->green, fg_color->blue);
if (cc->x != 0)
Expand Down

0 comments on commit 64d4ec3

Please sign in to comment.