1 files changed, 3 insertions, 1 deletions
diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml
index 7253cbe6..8cad3b5a 100644
--- a/resources/qml/MatrixText.qml
+++ b/resources/qml/MatrixText.qml
@@ -19,7 +19,9 @@ TextEdit {
color: Nheko.colors.text
onLinkActivated: Nheko.openLink(link)
ToolTip.visible: hoveredLink || false
- ToolTip.text: hoveredLink || ""
+ ToolTip.text: hoveredLink
+ // Setting a tooltip delay makes the hover text empty .-.
+ //ToolTip.delay: Nheko.tooltipDelay
Component.onCompleted: {
TimelineManager.fixImageRendering(r.textDocument, r);
}
|