pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update SkipSegmentButton.tsx

Pas 64a241e2 427828d7

+2 -3
+2 -3
src/components/player/atoms/SkipSegmentButton.tsx
··· 182 182 `bottom-[calc($1 + ${verticalOffset}px)]`, 183 183 ); 184 184 185 - let show = false; 186 - if (showingState === "always") show = true; 187 - else if (showingState === "hover" && props.controlsShowing) show = true; 185 + // Show button whenever we're in a segment (not only on hover after first 10s) 186 + const show = showingState === "always" || showingState === "hover"; 188 187 189 188 return ( 190 189 <Transition