From 39e50a788fdcc5604d166b55fb9a7f2f58a1547b Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Mon, 31 Jul 2023 22:40:13 +0200 Subject: [PATCH] Room topic: fix mouse cursor shape; don't show URLs in status bar The topic always has URLs verbatim as it doesn't support markup. --- client/qml/Timeline.qml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/qml/Timeline.qml b/client/qml/Timeline.qml index f15cb046..c03536df 100644 --- a/client/qml/Timeline.qml +++ b/client/qml/Timeline.qml @@ -156,9 +156,7 @@ Page { readOnly: true wrapMode: TextEdit.Wrap selectByMouse: true - - onHoveredLinkChanged: - controller.showStatusMessage(hoveredLink) + hoverEnabled: true onLinkActivated: (link) => controller.resourceRequested(link)