From c8d6bdc257f7e17f2228a6ba50921d9501b8c5a0 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Wed, 18 Apr 2018 10:59:11 +0200 Subject: [PATCH] fix(Chat): hide remote composing when chat is not activated --- ui/modules/Linphone/Chat/Chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/modules/Linphone/Chat/Chat.js b/ui/modules/Linphone/Chat/Chat.js index b60db925f..3e9cb1398 100644 --- a/ui/modules/Linphone/Chat/Chat.js +++ b/ui/modules/Linphone/Chat/Chat.js @@ -36,7 +36,7 @@ function getComponentFromEntry (chatEntry) { } function getIsComposingMessage () { - if (!container.proxyModel.isRemoteComposing) { + if (!container.proxyModel.isRemoteComposing || !Linphone.SettingsModel.chatEnabled) { return '' }