Hide quality indicator if the quality has top score.

auto_join_3.3
Håvar Aambø Fosstveit 2020-05-05 22:20:21 +02:00
parent 2acd35d32b
commit ee6409b2b3
1 changed files with 3 additions and 3 deletions

View File

@ -215,16 +215,16 @@ class VideoView extends React.PureComponent
case 7: case 7:
case 8: case 8:
case 9:
{ {
quality = <SignalCellular3BarIcon style={{ color: yellow[500] }}/>; quality = <SignalCellular3BarIcon style={{ color: yellow[500] }}/>;
break; break;
} }
case 9:
case 10: case 10:
{ {
quality = <SignalCellularAltIcon style={{ color: green[500] }}/>; quality = null; // <SignalCellularAltIcon style={{ color: green[500] }}/>;
break; break;
} }