From 8742dc579786e6818d8c2b9f838f69d013fd3f8b Mon Sep 17 00:00:00 2001 From: Simon Redman Date: Fri, 8 Mar 2019 14:18:51 -0700 Subject: [PATCH] Fix doubly-nested ConversationDisplay which was causing messages to not be send-able Bug introduced by commit 1ec20886a8acadc4212845695de167666724a29f Something in my build system changed so I was testing the wrong build when merging before! --- smsapp/qml/ConversationList.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smsapp/qml/ConversationList.qml b/smsapp/qml/ConversationList.qml index 038b66f72..0cc8e0e9c 100644 --- a/smsapp/qml/ConversationList.qml +++ b/smsapp/qml/ConversationList.qml @@ -55,7 +55,7 @@ Kirigami.ScrollablePage readonly property QtObject device: devicesCombo.currentIndex >= 0 ? devicesModel.data(devicesModel.index(devicesCombo.currentIndex, 0), DevicesModel.DeviceRole) : null readonly property alias lastDeviceId: conversationListModel.deviceId - ConversationDisplay { + Component { id: chatView ConversationDisplay { deviceId: page.lastDeviceId