mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
15 lines
297 B
QML
15 lines
297 B
QML
import QtQuick 2.13
|
|
import QtMultimedia 5.13
|
|
|
|
Audio {
|
|
id: audio
|
|
|
|
property var store
|
|
property string track: "error.mp3"
|
|
|
|
source: Qt.resolvedUrl("./../assets/audio" + track)
|
|
audioRole: Audio.NotificationRole
|
|
volume: store.volume
|
|
muted: !store.notificationSoundsEnabled
|
|
}
|