mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-22 23:27:46 +00:00
always show settings icon on player page
even if there is an error, they should be able to try other sources
This commit is contained in:
parent
d014feb039
commit
01589becd6
1 changed files with 3 additions and 5 deletions
|
|
@ -172,11 +172,9 @@ export function PlayerPart(props: PlayerPartProps) {
|
|||
) : null}
|
||||
{status === playerStatus.PLAYBACK_ERROR ||
|
||||
status === playerStatus.PLAYING ? (
|
||||
<>
|
||||
<Player.Captions />
|
||||
<Player.Settings />
|
||||
</>
|
||||
<Player.Captions />
|
||||
) : null}
|
||||
<Player.Settings />
|
||||
{/* Fullscreen on when not shifting */}
|
||||
{!isShifting && <Player.Fullscreen />}
|
||||
|
||||
|
|
@ -195,7 +193,7 @@ export function PlayerPart(props: PlayerPartProps) {
|
|||
{!isIOSPWA &&
|
||||
(status === playerStatus.PLAYING ? <Player.Pip /> : null)}
|
||||
<Player.Episodes />
|
||||
{status === playerStatus.PLAYING ? <Player.Settings /> : null}
|
||||
<Player.Settings />
|
||||
{/* Expand button for iOS PWA only */}
|
||||
{isIOSPWA && status === playerStatus.PLAYING && <Widescreen />}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue