Fix map copyright link activation

The argument was missing, so it wasn't possible to actually click and
visit the copyright notices linked on maps.
This commit is contained in:
Joshua Goins
2024-06-08 09:42:39 -04:00
parent f278cc0c86
commit be66ffef0f
3 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ ColumnLayout {
}
Connections {
target: mapView.map
function onCopyrightLinkActivated() {
function onCopyrightLinkActivated(link: string) {
Qt.openUrlExternally(link);
}
}