aboutsummaryrefslogtreecommitdiff
path: root/src/testcard.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2015-05-18 22:35:39 +0200
committerThomas White <taw@bitwiz.org.uk>2015-05-18 22:35:39 +0200
commitd9741ed9502c31d91c41b5aa97b624969c76e3d2 (patch)
tree1b51d913873b1ccd0de433ac6f0c0ea3c39a4ecc /src/testcard.c
parent968b34d90d3d904b24d441bbff0a52735538854f (diff)
Improve test card
Diffstat (limited to 'src/testcard.c')
-rw-r--r--src/testcard.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testcard.c b/src/testcard.c
index 1b7c1df..f336f31 100644
--- a/src/testcard.c
+++ b/src/testcard.c
@@ -150,16 +150,16 @@ static gboolean draw_sig(GtkWidget *da, cairo_t *cr, struct testcard *tc)
/* Arrows showing edges of slide */
cairo_translate(cr, xoff, yoff);
cairo_set_source_rgb(cr, 0.5, 0.0, 0.0);
- cairo_move_to(cr, 0.0, h/2);
+ cairo_move_to(cr, 0.0, 100+h/2);
arrow_left(cr, 80.0);
cairo_fill(cr);
- cairo_move_to(cr, tc->slide_width, h/2);
+ cairo_move_to(cr, tc->slide_width, 100+h/2);
arrow_right(cr, 80.0);
cairo_fill(cr);
- cairo_move_to(cr, tc->slide_width/2, h);
+ cairo_move_to(cr, 100+tc->slide_width/2, h);
arrow_down(cr, 80.0);
cairo_fill(cr);
- cairo_move_to(cr, tc->slide_width/2, 0.0);
+ cairo_move_to(cr, 100+tc->slide_width/2, 0.0);
arrow_up(cr, 80.0);
cairo_fill(cr);
return FALSE;