|
@@ -67,7 +67,8 @@ type Props = {
|
67
|
67
|
_onHardwareBackPress: Function,
|
68
|
68
|
|
69
|
69
|
/**
|
70
|
|
- * The indicator which determines if we are in reduced UI mode.
|
|
70
|
+ * The indicator which determines whether the UI is reduced (to accommodate
|
|
71
|
+ * smaller display areas).
|
71
|
72
|
*
|
72
|
73
|
* @private
|
73
|
74
|
*/
|
|
@@ -200,7 +201,7 @@ class Conference extends Component<Props> {
|
200
|
201
|
{/*
|
201
|
202
|
* If there is a ringing call, show the callee's info.
|
202
|
203
|
*/
|
203
|
|
- !this.props._reducedUI && <CalleeInfoContainer />
|
|
204
|
+ this.props._reducedUI || <CalleeInfoContainer />
|
204
|
205
|
}
|
205
|
206
|
|
206
|
207
|
{/*
|
|
@@ -232,7 +233,7 @@ class Conference extends Component<Props> {
|
232
|
233
|
{/*
|
233
|
234
|
* The dialogs are in the topmost stacking layers.
|
234
|
235
|
*/
|
235
|
|
- !this.props._reducedUI && <DialogContainer />
|
|
236
|
+ this.props._reducedUI || <DialogContainer />
|
236
|
237
|
}
|
237
|
238
|
</Container>
|
238
|
239
|
);
|
|
@@ -370,6 +371,7 @@ function _mapDispatchToProps(dispatch) {
|
370
|
371
|
* @private
|
371
|
372
|
* @returns {{
|
372
|
373
|
* _connecting: boolean,
|
|
374
|
+ * _reducedUI: boolean,
|
373
|
375
|
* _toolboxVisible: boolean
|
374
|
376
|
* }}
|
375
|
377
|
*/
|
|
@@ -403,7 +405,8 @@ function _mapStateToProps(state) {
|
403
|
405
|
_connecting: Boolean(connecting_),
|
404
|
406
|
|
405
|
407
|
/**
|
406
|
|
- * The indicator which determines if we are in reduced UI mode.
|
|
408
|
+ * The indicator which determines whether the UI is reduced (to
|
|
409
|
+ * accommodate smaller display areas).
|
407
|
410
|
*
|
408
|
411
|
* @private
|
409
|
412
|
* @type {boolean}
|