linphone-desktop/ui/modules/Linphone/Notifications/NotificationRecordingCompleted.qml
2017-06-27 15:34:33 +02:00

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)
))
})
}