From 64a241e2ed6ec4d7e0629106dbb8d30d0dba6038 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Sun, 1 Feb 2026 12:58:07 -0700 Subject: [PATCH] Update SkipSegmentButton.tsx --- src/components/player/atoms/SkipSegmentButton.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/player/atoms/SkipSegmentButton.tsx b/src/components/player/atoms/SkipSegmentButton.tsx index a8e9cfe0..ab34645a 100644 --- a/src/components/player/atoms/SkipSegmentButton.tsx +++ b/src/components/player/atoms/SkipSegmentButton.tsx @@ -182,9 +182,8 @@ function SkipSegmentButton(props: { `bottom-[calc($1 + ${verticalOffset}px)]`, ); - let show = false; - if (showingState === "always") show = true; - else if (showingState === "hover" && props.controlsShowing) show = true; + // Show button whenever we're in a segment (not only on hover after first 10s) + const show = showingState === "always" || showingState === "hover"; return (