From 6b0d1bc432f6214653dc5f2118253f57da86322a Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Tue, 21 Feb 2017 15:33:04 +0100 Subject: [PATCH] fix(ui/modules/Linphone/Chat/Chat): fix a `ReferenceError: _initView is not defined` error --- linphone-desktop/ui/modules/Linphone/Chat/Chat.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-desktop/ui/modules/Linphone/Chat/Chat.qml b/linphone-desktop/ui/modules/Linphone/Chat/Chat.qml index 5242885b2..87f04178d 100644 --- a/linphone-desktop/ui/modules/Linphone/Chat/Chat.qml +++ b/linphone-desktop/ui/modules/Linphone/Chat/Chat.qml @@ -105,7 +105,7 @@ Rectangle { // When the view is changed (for example `Calls` -> `Messages`), // the position is set at end and it can be possible to load // more entries. - onEntryTypeFilterChanged: _initView() + onEntryTypeFilterChanged: chat._initView() onMoreEntriesLoaded: { chat.positionViewAtIndex(n - 1, ListView.Beginning)