From 328f4443b5f3f59f532d9e428b0c801198d7b88e Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Wed, 16 Apr 2025 11:26:16 +0200 Subject: [PATCH] add a missing restore linewidth after a ps/pdf print full --- src/psprint.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/psprint.c b/src/psprint.c index 1417b001..86783259 100644 --- a/src/psprint.c +++ b/src/psprint.c @@ -1576,6 +1576,7 @@ void create_ps(char **psfile, int what, int fullzoom, int eps) /* restore original size and zoom factor */ if(fullzoom == 1) { save_restore_zoom(0, &zi); + change_linewidth(xctx->lw); } }