From 11ffd09e3baa5f91fcb4ac09bf37f91113197b69 Mon Sep 17 00:00:00 2001 From: itsrubberduck Date: Sat, 21 Feb 2026 00:28:03 +0100 Subject: [PATCH] fix(pfd): mirror vertical speed vector direction --- app/components/flightlab/pfd/PfdVerticalSpeed.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/flightlab/pfd/PfdVerticalSpeed.vue b/app/components/flightlab/pfd/PfdVerticalSpeed.vue index c4649ca..9fd7045 100644 --- a/app/components/flightlab/pfd/PfdVerticalSpeed.vue +++ b/app/components/flightlab/pfd/PfdVerticalSpeed.vue @@ -28,7 +28,7 @@ function vsToY(fpm: number): number { const sign = Math.sign(fpm) if (sign === 0) return centerY.value const frac = speedFraction(Math.abs(fpm)) - return centerY.value - sign * frac * scaleSpan.value + return centerY.value + sign * frac * scaleSpan.value } const markPositions = computed(() => {