Skip to content
Snippets Groups Projects
Commit f59f7f53 authored by SeeLook's avatar SeeLook
Browse files

Fixed path to QML components after.

parent 194fed43
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ Score {
scordature = null
}
if (GLOB.tuning.scordature && GLOB.instrument.type !== Tinstrument.BassGuitar) {
var c = Qt.createComponent("qrc:/Scordature.qml")
var c = Qt.createComponent("qrc:/score/Scordature.qml")
scordature = c.createObject(firstStaff)
firstStaff.scordSpace = scordature.height
} else
......@@ -128,7 +128,7 @@ Score {
onSingleNoteChanged: {
if (singleNote) {
var c = Qt.createComponent("qrc:/NotePrompt.qml")
var c = Qt.createComponent("qrc:/score/NotePrompt.qml")
notePrompt = c.createObject(scoreObj.note(0))
} else
notePrompt.destroy()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment