fix volume of notification sounds
This commit is contained in:
parent
b528e784c9
commit
69b3ea57d6
|
@ -19,6 +19,7 @@ Rectangle {
|
||||||
Audio {
|
Audio {
|
||||||
id: sendMessageSound
|
id: sendMessageSound
|
||||||
source: "../../../../sounds/send_message.wav"
|
source: "../../../../sounds/send_message.wav"
|
||||||
|
volume: 0.2
|
||||||
}
|
}
|
||||||
|
|
||||||
function interpretMessage(msg) {
|
function interpretMessage(msg) {
|
||||||
|
|
|
@ -58,6 +58,7 @@ ApplicationWindow {
|
||||||
id: notificationSound
|
id: notificationSound
|
||||||
audioRole: Audio.NotificationRole
|
audioRole: Audio.NotificationRole
|
||||||
source: "../../../../sounds/notification.wav"
|
source: "../../../../sounds/notification.wav"
|
||||||
|
volume: 0.2
|
||||||
}
|
}
|
||||||
|
|
||||||
Settings {
|
Settings {
|
||||||
|
|
|
@ -5,6 +5,7 @@ Audio {
|
||||||
id: errorSound
|
id: errorSound
|
||||||
source: "./error.mp3"
|
source: "./error.mp3"
|
||||||
audioRole: Audio.NotificationRole
|
audioRole: Audio.NotificationRole
|
||||||
|
volume: 0.2
|
||||||
}
|
}
|
||||||
|
|
||||||
/*##^##
|
/*##^##
|
||||||
|
|
Loading…
Reference in New Issue