linphone-desktop/linphone-app/ui/modules/Linphone/Notifications/NotificationSnapshotWasTaken.qml
2020-03-26 16:44:31 +01:00

13 lines
337 B
QML

import Utils 1.0
// =============================================================================
NotificationBasic {
icon: 'snapshot_sign'
message: Utils.basename(notificationData.filePath)
handler: (function () {
Qt.openUrlExternally(Utils.dirname(
Utils.getUriFromSystemPath(notificationData.filePath)
))
})
}