diff --git a/ui/round/src/clock/clockView.ts b/ui/round/src/clock/clockView.ts index f2532e71da680..b4fe9bdafe5f1 100644 --- a/ui/round/src/clock/clockView.ts +++ b/ui/round/src/clock/clockView.ts @@ -113,7 +113,9 @@ function showBar(ctrl: RoundController, color: Color) { export function updateElements(clock: ClockController, els: ClockElements, millis: Millis): void { if (els.time) els.time.innerHTML = formatClockTime(millis, clock.showTenths(millis), true, clock.opts.nvui); - if (els.bar) els.bar.style.transform = 'scale(' + clock.timeRatio(millis) + ',1)'; + // 12/02/2025 Brave 1.74.51 android flickers the bar oninline transforms, even though .bar is display: none + if (els.bar && getComputedStyle(els.bar).display === 'block') + els.bar.style.transform = 'scale(' + clock.timeRatio(millis) + ',1)'; if (els.clock) { const cl = els.clock.classList; if (millis < clock.emergMs) cl.add('emerg');