fix(Chat): hide remote composing when chat is not activated

This commit is contained in:
Ronan Abhamon 2018-04-18 10:59:11 +02:00
parent 17f6c0a5c1
commit c8d6bdc257

View file

@ -36,7 +36,7 @@ function getComponentFromEntry (chatEntry) {
}
function getIsComposingMessage () {
if (!container.proxyModel.isRemoteComposing) {
if (!container.proxyModel.isRemoteComposing || !Linphone.SettingsModel.chatEnabled) {
return ''
}