summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-06-23 00:51:45 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-06-25 11:35:27 +0200
commitee44effdbdf0474d3e403111f93a27cb43166dc1 (patch)
tree1f8f359f007d57d827cdbd5b3fc2a8d51879871b
parentIncrease contrast of dark theme secondary colors slightly (diff)
downloadnheko-ee44effdbdf0474d3e403111f93a27cb43166dc1.tar.xz
Fix clicking links in mobile mode
fixes #617
-rw-r--r--resources/qml/MatrixText.qml3
1 files changed, 2 insertions, 1 deletions
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