From ccc46e4e813192e00270e07fdd66c7c1be329c9c Mon Sep 17 00:00:00 2001 From: pixelmixer Date: Thu, 7 Nov 2024 10:03:00 +0000 Subject: [PATCH] app: Removes inverted velocity --- app/core/gimpdynamicsoutput.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/gimpdynamicsoutput.c b/app/core/gimpdynamicsoutput.c index 75a89ae2d7..3d23ad37f0 100644 --- a/app/core/gimpdynamicsoutput.c +++ b/app/core/gimpdynamicsoutput.c @@ -470,7 +470,7 @@ gimp_dynamics_output_get_linear_value (GimpDynamicsOutput *output, if (private->use_velocity) { total += gimp_curve_map_value (private->velocity_curve, - (1.0 - coords->velocity)); + coords->velocity); factors++; }