diff --git a/ui/app/AppLayouts/Chat/ChatLayout.qml b/ui/app/AppLayouts/Chat/ChatLayout.qml index 003f87c8eb..533b8ad1d0 100644 --- a/ui/app/AppLayouts/Chat/ChatLayout.qml +++ b/ui/app/AppLayouts/Chat/ChatLayout.qml @@ -145,6 +145,7 @@ SplitView { height: isVisible ? 64 : 0 MouseArea { + cursorShape: Qt.PointingHandCursor; anchors.fill: parent onClicked: { chatsModel.setActiveChannelByIndex(index) diff --git a/ui/app/AppLayouts/Profile/ProfileLayout.qml b/ui/app/AppLayouts/Profile/ProfileLayout.qml index ee821a891d..96adcbe1bd 100644 --- a/ui/app/AppLayouts/Profile/ProfileLayout.qml +++ b/ui/app/AppLayouts/Profile/ProfileLayout.qml @@ -205,6 +205,18 @@ Item { font.weight: Font.Bold font.pixelSize: 20 } + + Text { + anchors.centerIn: parent + text: "Frequently asked questions" + onLinkActivated: Qt.openUrlExternally(link) + + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Text + cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor + } + } } Item {