diff --git a/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml b/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml index 99e2ddd017..24ed39b177 100644 --- a/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml +++ b/ui/StatusQ/src/StatusQ/Components/StatusListItem.qml @@ -20,6 +20,7 @@ Rectangle { property string subTitle: "" property string tertiaryTitle: "" property string label: "" + property string titleTextIcon: "" property real leftPadding: 16 property real rightPadding: 16 property bool enabled: true @@ -230,6 +231,16 @@ Rectangle { } } + StatusIcon { + width: visible ? 12 : 0 + height: visible ? 12 : 0 + visible: !!statusListItem.titleTextIcon + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + anchors.leftMargin: statusListItemTitle.contentWidth + 6 + icon: statusListItem.titleTextIcon + } + StatusToolTip { id: statusListItemTitleTooltip text: statusListItemTitle.text