Fix theme on native light mode, implement volume slider
Some checks failed
Build / build-linux (push) Failing after 18s
Build / build-windows (push) Has been cancelled

This commit is contained in:
Dark Steveneq
2025-10-14 10:06:06 +02:00
parent 5ffbede5a0
commit def26f8fda
8 changed files with 46 additions and 41 deletions

View File

@@ -5,6 +5,13 @@ pragma Singleton
MediaPlayer {
source: ""
audioOutput: AudioOutput {
id: output
volume: 0.4
}
property alias volume: output.volume
function startPlaying(url) {
if (playing) {
return;
@@ -20,10 +27,6 @@ MediaPlayer {
stop();
}
audioOutput: AudioOutput {
volume: 0.4
}
onErrorOccurred: function(error, errorString) {
stopPlaying();
}