Skip to content

Commit

Permalink
Needed? Harmful?
Browse files Browse the repository at this point in the history
another part of musescore#8765, not sure whether it breaks existing plugins?
  • Loading branch information
Jojo-Schmitz committed Aug 3, 2021
1 parent cb0035c commit ca4b283
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mscore/plugin/api/elements.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class Element : public Ms::PluginAPI::ScoreElement {
API_PROPERTY_T( bool, visible, VISIBLE )
/** Stacking order of this element */
API_PROPERTY_T( int, z, Z )
API_PROPERTY( small, SMALL )
API_PROPERTY( isSmall, SMALL )
API_PROPERTY( showCourtesy, SHOW_COURTESY )
API_PROPERTY( lineType, LINE_TYPE )
API_PROPERTY( line, LINE )
Expand Down Expand Up @@ -450,7 +450,7 @@ class Note : public Element {
// Q_PROPERTY(int pitch READ pitch WRITE undoSetPitch)
// Q_PROPERTY(bool play READ play WRITE undoSetPlay)
// Q_PROPERTY(int ppitch READ ppitch)
// Q_PROPERTY(bool small READ small WRITE undoSetSmall)
// Q_PROPERTY(bool isSmall READ isSmall WRITE undoSetSmall)
// Q_PROPERTY(int string READ string WRITE undoSetString)
// Q_PROPERTY(int subchannel READ subchannel)
/// Backward tie for this Note.
Expand Down Expand Up @@ -873,7 +873,7 @@ class Page : public Element {
class Staff : public ScoreElement {
Q_OBJECT

API_PROPERTY_T( bool, small, SMALL )
API_PROPERTY_T( bool, isSmall, SMALL )
API_PROPERTY_T( qreal, mag, MAG )
/**
* Staff color. See https://doc.qt.io/qt-5/qml-color.html
Expand Down

0 comments on commit ca4b283

Please sign in to comment.