mirror of https://github.com/vector-im/riot-web
Merge pull request #722 from matrix-org/luke/fix-status-bar-tab-complete
Fix status bar expanded on tab-completepull/21833/head
commit
e9318f5c02
|
@ -150,7 +150,9 @@ module.exports = React.createClass({
|
||||||
(state.usersTyping.length > 0) ||
|
(state.usersTyping.length > 0) ||
|
||||||
props.numUnreadMessages ||
|
props.numUnreadMessages ||
|
||||||
!props.atEndOfLiveTimeline ||
|
!props.atEndOfLiveTimeline ||
|
||||||
props.hasActiveCall) {
|
props.hasActiveCall ||
|
||||||
|
props.tabComplete.isTabCompleting()
|
||||||
|
) {
|
||||||
return STATUS_BAR_EXPANDED;
|
return STATUS_BAR_EXPANDED;
|
||||||
} else if (props.tabCompleteEntries) {
|
} else if (props.tabCompleteEntries) {
|
||||||
return STATUS_BAR_HIDDEN;
|
return STATUS_BAR_HIDDEN;
|
||||||
|
|
Loading…
Reference in New Issue