diff --git a/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml b/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml index bbcabb1330..f5358ef0a4 100644 --- a/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml +++ b/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml @@ -21,6 +21,7 @@ Rectangle { property real leftPadding: 16 property real rightPadding: 16 property bool enabled: true + property bool highlighted: false property int type: StatusListItem.Type.Primary property list components @@ -100,7 +101,7 @@ Rectangle { implicitWidth: 448 implicitHeight: Math.max(64, statusListItemTitleArea.height + 16) color: { - if (sensor.containsMouse) { + if (sensor.containsMouse || statusListItem.highlighted) { switch(type) { case StatusListItem.Type.Primary: return Theme.palette.baseColor2