From 14e21214af1bbd7dfe61aa00001df378cf322519 Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Wed, 3 Dec 2025 20:55:16 +0100 Subject: [PATCH] fix: subdue paused only for running timers --- apps/client/src/views/timer/Timer.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/client/src/views/timer/Timer.tsx b/apps/client/src/views/timer/Timer.tsx index b06ac2318..bb4ee1fe4 100644 --- a/apps/client/src/views/timer/Timer.tsx +++ b/apps/client/src/views/timer/Timer.tsx @@ -1,5 +1,5 @@ import { useMemo } from 'react'; -import { OntimeView } from 'ontime-types'; +import { OntimeView, TimerType } from 'ontime-types'; import { FitText } from '../../common/components/fit-text/FitText'; import MultiPartProgressBar from '../../common/components/multi-part-progress-bar/MultiPartProgressBar'; @@ -133,6 +133,7 @@ function Timer({ customFields, projectData, isMirrored, settings, viewSettings } // gather presentation styles const resolvedTimerColour = getTimerColour(viewSettings, timerColour, showWarning, showDanger); const timerFontSize = getEstimatedFontSize(display, secondaryContent); + const subduePaused = !isPlaying && viewTimerType !== TimerType.Clock; const userStyles = { ...(keyColour && { '--timer-bg': keyColour }), ...(resolvedTimerColour && { '--timer-colour': resolvedTimerColour }), @@ -177,7 +178,7 @@ function Timer({ customFields, projectData, isMirrored, settings, viewSettings } ) : (