Skip to content

Commit

Permalink
Use the correct sound file
Browse files Browse the repository at this point in the history
  • Loading branch information
tanghus committed Dec 22, 2018
1 parent a644035 commit fe0a947
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qml/harbour-kitchentimer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import QtQuick 2.0
import QtMultimedia 5.6
import Sailfish.Silica 1.0
//import Sailfish.Media 1.0
//import Sailfish.Media 1.0
import harbour.kitchentimer.insomniac 1.0
import "pages"
import "cover"
Expand Down Expand Up @@ -101,7 +101,7 @@ ApplicationWindow {
Audio {
id: alarm;
loops: loopSound ? Audio.Infinite : 1;
source: Qt.resolvedUrl(selectedSound);
source: useDefaultSound ? builtinSound : Qt.resolvedUrl(selectedSound);
audioRole: Audio.AlarmRole;
onError: {
console.log("Audio error:", errorString, selectedSound)
Expand Down

0 comments on commit fe0a947

Please sign in to comment.