From 7fd7c8a947f8bc57f21ae8c193b98f695cf01189 Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Mon, 8 Nov 2021 16:21:02 +0100 Subject: [PATCH] fix(StatusListItem): This solves the issue of channel list overlpaing when a category is collapsed. The issue is not reproducible a 100% of time. In order to solve this bug, we have turned on the preventStealing flag for the mousseArea. Checked for any sideimpacts but didnt find any. Tried several times and this change seems to solve the bug. Feel free to repoen if you are still able to reproduce this behaviour. fixes #4047 --- ui/StatusQ/src/StatusQ/Components/StatusListItem.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml b/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml index bfb00df8b2..53b5f180c0 100644 --- a/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml +++ b/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml @@ -106,6 +106,7 @@ Rectangle { cursorShape: enabled ? Qt.PointingHandCursor : Qt.ArrowCursor acceptedButtons: Qt.LeftButton | Qt.RightButton hoverEnabled: true + preventStealing: true onClicked: { statusListItem.clicked(statusListItem.itemId)