diff --git a/src/ui/PodcastView/EpisodePlayer.svelte b/src/ui/PodcastView/EpisodePlayer.svelte index 9c2a9bd..b7c4189 100644 --- a/src/ui/PodcastView/EpisodePlayer.svelte +++ b/src/ui/PodcastView/EpisodePlayer.svelte @@ -54,6 +54,9 @@ $: showQueue = $plugin?.settings?.autoQueue !== false || $queue.episodes.length > 0; + // Title length feeds the CSS length-based downscaling on .podcast-title (issue #81). + $: titleCharCount = $currentEpisode?.title?.length ?? 0; + let isHoveringArtwork: boolean = false; let isLoading: boolean = true; let playerVolume: number = 1; @@ -364,7 +367,7 @@ -