Skip to content

Commit

Permalink
Fix Mu4 compatibility
Browse files Browse the repository at this point in the history
Seem it doesn't like translatable strings in the title, but does in the description.
  • Loading branch information
Jojo-Schmitz committed Apr 20, 2024
1 parent 54b8106 commit b4f08e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blacknotes.qml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//
// Copyright (C)2010 Nicolas Froment (lasconic)
// Copyright (C)2014 Jörn Eichler (heuchi)
// Copyright (C)2012-2019 Joachim Schmitz (Jojo-Schmitz)
// Copyright (C)2012-2024 Joachim Schmitz (Jojo-Schmitz)
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
Expand All @@ -25,12 +25,12 @@ import MuseScore 3.0

MuseScore {
version: "3.0"
description: "This plugin paints all chords and rests in black"
description: qsTr("This plugin paints all chords and rests in black")
menuPath: "Plugins.Notes.Color Notes in Black"

Component.onCompleted : {
if (mscoreMajorVersion >= 4) {
title = qsTr("Black Notes") ;
title = "Color Notes in Black" ;
// thumbnailName = ".png";
categoryCode = "color-notes";
}
Expand Down

0 comments on commit b4f08e7

Please sign in to comment.