mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 20:08:11 +00:00
13 lines
338 B
QML
13 lines
338 B
QML
import Utils 1.0
|
|
|
|
// =============================================================================
|
|
|
|
NotificationBasic {
|
|
icon: 'recording_sign'
|
|
message: Utils.basename(notificationData.filePath)
|
|
handler: (function () {
|
|
Qt.openUrlExternally(Utils.dirname(
|
|
Utils.getUriFromSystemPath(notificationData.filePath)
|
|
))
|
|
})
|
|
}
|