From 2884721faf09ad61ac6451f005029a01bda667e4 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 14 Aug 2026 11:37:57 +0200 Subject: [PATCH] enable external set integer 'xbrushwidth' for arrowplot. --- src/frontend/plotting/gnuplot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/plotting/gnuplot.c b/src/frontend/plotting/gnuplot.c index 705842e10..8efe67865 100644 --- a/src/frontend/plotting/gnuplot.c +++ b/src/frontend/plotting/gnuplot.c @@ -484,7 +484,7 @@ void ft_gnuplot(double *xlims, double *ylims, } else if (plottype == PLOT_COMB) { strcpy(plotstyle, "impulses"); } else if (plottype == PLOT_ARROWS) { - fprintf(file, "set style arrow 1 head nofilled size screen 0.03, 15 lw 2\n"); + fprintf(file, "set style arrow 1 head nofilled size screen 0.03, 15 lw %d\n", linewidth); strcpy(plotstyle, "arrows"); } else if (plottype == PLOT_POINT) { if (markers) {