mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Add another setState skip to prevent redundant state updates
This commit is contained in:
parent
626d575820
commit
ab964339d2
1 changed files with 3 additions and 1 deletions
|
@ -1640,7 +1640,9 @@ export default class RoomView extends React.Component<IProps, IState> {
|
|||
// but it's better than the video going missing entirely
|
||||
if (auxPanelMaxHeight < 50) auxPanelMaxHeight = 50;
|
||||
|
||||
this.setState({auxPanelMaxHeight: auxPanelMaxHeight});
|
||||
if (this.state.auxPanelMaxHeight !== auxPanelMaxHeight) {
|
||||
this.setState({ auxPanelMaxHeight });
|
||||
}
|
||||
};
|
||||
|
||||
private onStatusBarVisible = () => {
|
||||
|
|
Loading…
Reference in a new issue