Skip to content

Commit

Permalink
fix(FEC-13506_REG): fix PR #871 regression
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanTGold committed Jun 25, 2024
1 parent 746118e commit 5ed29f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ui-presets/live.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import style from '../styles/style.scss';
import {Component, Fragment, h, VNode} from 'preact';
import {OverlayAction} from '../components';
import {CaptionsControl, OverlayAction} from '../components';
import {PrePlaybackPlayOverlay} from '../components';
import {Loading} from '../components';
import {SeekBarLivePlaybackContainer} from '../components';
Expand Down Expand Up @@ -81,7 +81,7 @@ class LiveUI extends Component<any, any> {
</InteractiveArea>
<BottomBar
leftControls={[PlaybackControls, Rewind, Forward, LiveTag]}
rightControls={[VrStereo, Volume, ClosedCaptions, Settings, Cast, PictureInPicture, Fullscreen, Logo]}
rightControls={[VrStereo, Volume, CaptionsControl, Settings, Cast, PictureInPicture, Fullscreen, Logo]}
>
<SeekBarLivePlaybackContainer showFramePreview showTimeBubble playerContainer={containerRef} />
</BottomBar>
Expand Down
2 changes: 1 addition & 1 deletion src/ui-presets/playback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class PlaybackUI extends Component<any, any> {
</InteractiveArea>
<BottomBar
leftControls={[PlaybackControls, Rewind, Forward, TimeDisplayPlaybackContainer]}
rightControls={[VrStereo, Volume, AdvancedAudioDesc, ClosedCaptions, Settings, Cast, PictureInPicture, Fullscreen, Logo]}>
rightControls={[VrStereo, Volume, AdvancedAudioDesc, CaptionsControl, Settings, Cast, PictureInPicture, Fullscreen, Logo]}>
<SeekBarPlaybackContainer showFramePreview showTimeBubble playerContainer={containerRef} />
</BottomBar>
</Fragment>
Expand Down

0 comments on commit 5ed29f6

Please sign in to comment.