Skip to content

Commit

Permalink
Improve Mu3/Mu4 compatibility
Browse files Browse the repository at this point in the history
On top of PR #14
  • Loading branch information
Jojo-Schmitz committed Nov 13, 2023
1 parent e16dd52 commit 12d20ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added .blacknotes.qml.swp
Binary file not shown.
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 12d20ba

Please sign in to comment.