[trunk] Cursor.staffIdx is not (track * 4) but (track / 4)
The documentation shown in the Plugin editor says Cursor's property "staffIdx" is "current staff (track * 4)" but that's incorrect. It should be "current staff (track / 4)".
From"cursor.cpp":
//--------------------------------------------------------- // staffIdx //--------------------------------------------------------- int Cursor::staffIdx() const { return _track / VOICES; }
Comments
See https://github.com/musescore/MuseScore/pull/503
Fixed in c9756e341e
Automatically closed -- issue fixed for 2 weeks with no activity.