From e60a7b0abd8b06dd36a50f002ec4fee55c2ca361 Mon Sep 17 00:00:00 2001 From: Zarg <62082797+Zaarrg@users.noreply.github.com> Date: Fri, 3 Jan 2025 00:21:32 +0100 Subject: [PATCH] fix hovered link not opening directly --- src/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.qml b/src/main.qml index 47f4066..e836b72 100644 --- a/src/main.qml +++ b/src/main.qml @@ -124,7 +124,7 @@ ApplicationWindow { // In the app, we use open-external IPC signal, but make sure this works anyway property string hoveredLink: "" - onLinkHovered: hoveredLink = url + onLinkHovered: function(url) { hoveredLink = url } onNewWindowRequested: function(req) { if (req.userInitiated) Qt.openUrlExternally(hoveredLink) } // FIXME: When is this called?