Skip to content

Commit

Permalink
Merge pull request #12 from internxt/feat/disable-videoQuality-button
Browse files Browse the repository at this point in the history
[_]: feat/disable-video-quality-button
  • Loading branch information
larryrider authored Dec 11, 2024
2 parents 02fc506 + bab04f4 commit 686d2cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion react/features/conference/components/native/Labels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Labels extends Component<IProps> {
hitSlop = { LabelHitSlop }
onPress = {
this.props.createOnPress(LABEL_ID_QUALITY) } >
<VideoQualityLabel />
{/*<VideoQualityLabel />*/}
</TouchableOpacity>
</View>
</View>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const TitleBar = (props: IProps): JSX.Element => {
pointerEvents = 'box-none'
style = { styles.roomNameWrapper as StyleProp<ViewStyle> }>
<View style = { styles.qualityLabelContainer as StyleProp<ViewStyle> }>
<VideoQualityLabel />
{/*<VideoQualityLabel />*/}
</View>
<ConnectionIndicator
iconStyle = { styles.connectionIndicatorIcon }
Expand Down
2 changes: 1 addition & 1 deletion react/features/toolbox/functions.web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export function getAllToolboxButtons(_customToolbarButtons?: {
key: 'videoquality',
Content: VideoQualityButton,
group: 2,
display: true,
display: false,
};

const fullscreen = {
Expand Down

0 comments on commit 686d2cf

Please sign in to comment.