diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-07-12 20:03:56 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-07-12 20:03:56 +0800 |
commit | 017bc278e06ffa7b645c2dda9832dd2eacf0f1f0 (patch) | |
tree | 8d5fbe250d79d76494f82bd5a2d6cf95eab91568 /Link.qml | |
parent | dbfc126d39cc79b4e828be60a6f5f4d66674f74a (diff) |
Shop link opens external web browser
Diffstat (limited to 'Link.qml')
-rw-r--r-- | Link.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ Rectangle { Layout.alignment: Qt.AlignCenter text: "<a href=\"https://darapsa.com/" + arg + "\">https://darapsa.com/" + arg + "</a>" linkColor: "#ffffff" - onLinkActivated: activated(arg) + onLinkActivated: Qt.openUrlExternally(link) } } } |