From 44eea0f1355510162ec698479df7aca0cf8c1f34 Mon Sep 17 00:00:00 2001 From: Kitsune Ral <> Date: Fri, 12 Jan 2024 22:13:28 +0100 Subject: [PATCH] ScrollFinisher: fix not logging The logging category cannot be taken from the parent object because it's not defined in chatView but in root object. --- client/qml/ScrollFinisher.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/qml/ScrollFinisher.qml b/client/qml/ScrollFinisher.qml index 90490fcd..51e90137 100644 --- a/client/qml/ScrollFinisher.qml +++ b/client/qml/ScrollFinisher.qml @@ -6,7 +6,7 @@ Timer { property int positionMode: ListView.End property int round: 1 - readonly property var lc: parent.lc + readonly property var lc: root.lc readonly property real contentX: parent.contentX readonly property real contentY: parent.contentY readonly property real height: parent.height