mirror of
https://github.com/Zaarrg/stremio-community-v5.git
synced 2026-05-19 08:22:20 +00:00
fix hovered link not opening directly
This commit is contained in:
parent
baa83942ad
commit
e60a7b0abd
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ ApplicationWindow {
|
||||||
|
|
||||||
// In the app, we use open-external IPC signal, but make sure this works anyway
|
// In the app, we use open-external IPC signal, but make sure this works anyway
|
||||||
property string hoveredLink: ""
|
property string hoveredLink: ""
|
||||||
onLinkHovered: hoveredLink = url
|
onLinkHovered: function(url) { hoveredLink = url }
|
||||||
onNewWindowRequested: function(req) { if (req.userInitiated) Qt.openUrlExternally(hoveredLink) }
|
onNewWindowRequested: function(req) { if (req.userInitiated) Qt.openUrlExternally(hoveredLink) }
|
||||||
|
|
||||||
// FIXME: When is this called?
|
// FIXME: When is this called?
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue