From ab56ec0abdfd0f4c73342cd87d3b3dfde6b29d29 Mon Sep 17 00:00:00 2001 From: Armin Luntzer <armin.luntzer@univie.ac.at> Date: Mon, 3 Jun 2019 11:31:11 +0200 Subject: [PATCH] XYPLOT: add circle radius to shift paramters for proper placement --- src/client/widgets/xyplot/xyplot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/widgets/xyplot/xyplot.c b/src/client/widgets/xyplot/xyplot.c index 9643bed..61a627f 100644 --- a/src/client/widgets/xyplot/xyplot.c +++ b/src/client/widgets/xyplot/xyplot.c @@ -2642,7 +2642,7 @@ static void xyplot_draw_circles(XYPlot *p, cairo_t *cr, struct graph *g) cs = xyplot_create_circle_surface(cr, g, 4.0, TRUE); - xyplot_draw_from_surface(p, cr, g, cs, 4.0, 4.0); + xyplot_draw_from_surface(p, cr, g, cs, 6.0, 6.0); cairo_surface_destroy(cs); } -- GitLab