From 570b2e2dbdd1822e14552339ec5cb35669fc63d9 Mon Sep 17 00:00:00 2001 From: Esteban82 Date: Sat, 2 Nov 2024 12:11:52 -0300 Subject: [PATCH] Fix --- src/psevents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/psevents.c b/src/psevents.c index 8f56230c56f..2d48d7ef0a6 100644 --- a/src/psevents.c +++ b/src/psevents.c @@ -846,7 +846,7 @@ GMT_LOCAL void psevents_set_outarray (struct GMT_CTRL *GMT, struct PSEVENTS_CTRL out[t_col] = 0.0; if (Ctrl->M.active[PSEVENTS_DZ]) out[z_col] += Ctrl->M.value[PSEVENTS_DZ][PSEVENTS_VAL1] * x; /* Changing of color via dz */ } - else if (finite_duration && t_now < t[PSEVENTS_T_END]) { /* We are within the normal display phase with nominal symbol size */ + else if (t_now < t[PSEVENTS_T_END]) { /* We are within the normal display phase with nominal symbol size */ out[x_col] = 1.0; out[i_col] = out[t_col] = 0.0; /* No intensity or transparency during normal phase */ }