|
@@ -131,6 +131,7 @@ class Filmstrip extends Component<*> {
|
131
|
131
|
*/
|
132
|
132
|
function _mapStateToProps(state) {
|
133
|
133
|
const participants = state['features/base/participants'];
|
|
134
|
+ const { visible } = state['features/filmstrip'];
|
134
|
135
|
|
135
|
136
|
return {
|
136
|
137
|
/**
|
|
@@ -149,7 +150,7 @@ function _mapStateToProps(state) {
|
149
|
150
|
* @private
|
150
|
151
|
* @type {boolean}
|
151
|
152
|
*/
|
152
|
|
- _visible: participants.length > 1
|
|
153
|
+ _visible: visible && participants.length > 1
|
153
|
154
|
};
|
154
|
155
|
}
|
155
|
156
|
|