mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
0eb40287fa
Properties and functions moved to Global: - toastMessage - openProfilePopup() - getProfileImage() - popupOpened Closes #4248
15 lines
301 B
QML
15 lines
301 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
|
|
}
|