2020-06-30 20:01:37 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtMultimedia 5.13
|
|
|
|
|
|
|
|
Audio {
|
|
|
|
id: errorSound
|
|
|
|
source: "./error.mp3"
|
2020-07-10 18:31:12 +00:00
|
|
|
audioRole: Audio.NotificationRole
|
2020-10-15 15:04:53 +00:00
|
|
|
volume: appSettings.volume
|
|
|
|
muted: !appSettings.notificationSoundsEnabled
|
2020-06-30 20:01:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
}
|
|
|
|
##^##*/
|