[RN] Honor filmstrip visibility state
This commit is contained in:
parent
aa314c10ac
commit
9e53d40b9c
|
@ -131,6 +131,7 @@ class Filmstrip extends Component<*> {
|
||||||
*/
|
*/
|
||||||
function _mapStateToProps(state) {
|
function _mapStateToProps(state) {
|
||||||
const participants = state['features/base/participants'];
|
const participants = state['features/base/participants'];
|
||||||
|
const { visible } = state['features/filmstrip'];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
/**
|
/**
|
||||||
|
@ -149,7 +150,7 @@ function _mapStateToProps(state) {
|
||||||
* @private
|
* @private
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
*/
|
*/
|
||||||
_visible: participants.length > 1
|
_visible: visible && participants.length > 1
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue