From 3da66d4d0d4f5c898a966aee843216a383c203b7 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Sun, 8 Mar 2026 23:37:31 +1300 Subject: [PATCH] Fixed player timeline thumbnail being shown when not expected --- .../src/lib/components/player/Timeline.svelte | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/materialious/src/lib/components/player/Timeline.svelte b/materialious/src/lib/components/player/Timeline.svelte index ed6fc65c..501c2b56 100644 --- a/materialious/src/lib/components/player/Timeline.svelte +++ b/materialious/src/lib/components/player/Timeline.svelte @@ -366,15 +366,19 @@ {videoLength(timeInSeconds)} {/snippet}
- {#if !userManualSeeking && playerShowTimelineThumbnail} -
+ {#if !userManualSeeking} +
{@render timelineTooltip('timeline', playerTimelineTimeHover)}
{/if}
- {#if playerSliderInteracted && playerShowTimelineThumbnail} -
+ {#if playerSliderInteracted} +
{@render timelineTooltip('thumb', currentTime)}
{/if}