fix audio qml tags
This commit is contained in:
parent
91cf1682b1
commit
4ffae4519f
16
ui/main.qml
16
ui/main.qml
|
@ -31,18 +31,14 @@ ApplicationWindow {
|
||||||
|
|
||||||
signal navigateTo(string path)
|
signal navigateTo(string path)
|
||||||
|
|
||||||
Item {
|
ErrorSound {
|
||||||
ErrorSound {
|
id: errorSound
|
||||||
id: errorSound
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Audio {
|
||||||
Audio {
|
id: sendMessageSound
|
||||||
id: sendMessageSound
|
audioRole: Audio.NotificationRole
|
||||||
audioRole: NotificationRole
|
source: "../../../../sounds/send_message.wav"
|
||||||
source: "../../../../sounds/send_message.wav"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Settings {
|
Settings {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import QtMultimedia 5.13
|
||||||
Audio {
|
Audio {
|
||||||
id: errorSound
|
id: errorSound
|
||||||
source: "./error.mp3"
|
source: "./error.mp3"
|
||||||
audioRole: NotificationRole
|
audioRole: Audio.NotificationRole
|
||||||
}
|
}
|
||||||
|
|
||||||
/*##^##
|
/*##^##
|
||||||
|
|
Loading…
Reference in New Issue