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?