Skip to content

Commit

Permalink
Improve Mu3/Mu4 compatibility
Browse files Browse the repository at this point in the history
On top of PR musescore#14
  • Loading branch information
Jojo-Schmitz committed Nov 13, 2023
1 parent e16dd52 commit 37f2c9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blacknotes.qml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ MuseScore {
title: qsTr("Unsupported MuseScore Version")
text: qsTr("This plugin needs MuseScore 3.0.2 or later")
onAccepted: {
quit()
(typeof(quit) === 'undefined' ? Qt.quit : quit)()
}
}

Expand Down Expand Up @@ -154,6 +154,6 @@ MuseScore {

curScore.endCmd()

quit();
(typeof(quit) === 'undefined' ? Qt.quit : quit)()
}
}

0 comments on commit 37f2c9a

Please sign in to comment.