1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-19 20:23:18 +03:00

Merge pull request #1680 from matrix-org/t3chguy/hide_roomstatusbar

Hide status bar on visible->hidden transition
This commit is contained in:
Luke Barnard
2018-01-05 15:26:22 +00:00
committed by GitHub
2 changed files with 8 additions and 4 deletions

View File

@ -1348,10 +1348,12 @@ module.exports = React.createClass({
},
onStatusBarHidden: function() {
if (this.unmounted) return;
// This is currently not desired as it is annoying if it keeps expanding and collapsing
// TODO: Find a less annoying way of hiding the status bar
/*if (this.unmounted) return;
this.setState({
statusBarVisible: false,
});
});*/
},
showSettings: function(show) {