smsapp: Fix "Open with default" button
One does not let QML auto-convert string to URL.
This commit is contained in:
parent
1d7af9a05f
commit
e65c0d9baa
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ Kirigami.Page {
|
|||
text: i18nd("kdeconnect-sms", "Open with default")
|
||||
icon.name: "window-new"
|
||||
onTriggered: {
|
||||
Qt.openUrlExternally(filePath);
|
||||
Qt.openUrlExternally(Qt.url(`file://${filePath}`))
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue