From ee44effdbdf0474d3e403111f93a27cb43166dc1 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 23 Jun 2021 00:51:45 +0200 Subject: [PATCH] Fix clicking links in mobile mode fixes #617 --- resources/qml/MatrixText.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml index 167899a5..65d66315 100644 --- a/resources/qml/MatrixText.qml +++ b/resources/qml/MatrixText.qml @@ -12,7 +12,8 @@ TextEdit { focus: false wrapMode: Text.Wrap selectByMouse: !Settings.mobileMode - enabled: selectByMouse + // this always has to be enabled, otherwise you can't click links anymore! + //enabled: selectByMouse color: Nheko.colors.text onLinkActivated: Nheko.openLink(link) ToolTip.visible: hoveredLink