From c4ac5226fee4e82bbbfda44b09e01db2eca4578c Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 24 Feb 2023 10:03:58 -0800 Subject: [PATCH] Draw axis over data --- chart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart.c b/chart.c index 2d255e0..0ee4840 100644 --- a/chart.c +++ b/chart.c @@ -87,8 +87,8 @@ static gboolean bv_chart_draw(GtkWidget *widget, cairo_t *cr) { GtkAllocation allocation; gtk_widget_get_allocation(widget, &allocation); - draw_axis(priv, cr, &allocation); draw_data(priv, cr, &allocation); + draw_axis(priv, cr, &allocation); return TRUE; } -- 2.44.1