Skip to content

Commit

Permalink
Fix all remaining onLinkActivated warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 15, 2024
1 parent 1c78855 commit 42f0f73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/qml/PluginManagerSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Popup {
wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
onLinkActivated: Qt.openUrlExternally(link)
onLinkActivated: link => Qt.openUrlExternally(link)
}

ListView {
Expand Down
2 changes: 1 addition & 1 deletion src/qml/QFieldCloudScreen.qml
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ Page {
wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
onLinkActivated: Qt.openUrlExternally(link)
onLinkActivated: link => Qt.openUrlExternally(link)
}

MouseArea {
Expand Down

1 comment on commit 42f0f73

@qfield-fairy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.