Browse Source

Fix player UI not always vanishing (or so we hope :D)

pull/696/head
Jip Fr 2 years ago
parent
commit
adbf11969e
  1. 2
      src/components/player/atoms/ProgressBar.tsx

2
src/components/player/atoms/ProgressBar.tsx

@ -39,7 +39,7 @@ function ThumbnailDisplay(props: { at: number; show: boolean }) { @@ -39,7 +39,7 @@ function ThumbnailDisplay(props: { at: number; show: boolean }) {
if (!props.show || !currentThumbnail) return null;
return (
<div className="flex flex-col items-center -translate-x-1/2">
<div className="flex flex-col items-center -translate-x-1/2 pointer-events-none">
<div className="w-screen flex justify-center">
<div ref={ref}>
<div

Loading…
Cancel
Save