Skip to content

Commit

Permalink
fix #280531: stem direction wrong on flipped cross-staff beam
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSabatella committed Mar 25, 2019
1 parent 8dd7a02 commit e0bd254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/beam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ void Beam::layout1()

for (ChordRest* cr : _elements) {
const bool staffMove = cr->isChord() ? toChord(cr)->staffMove() : false;
if (!(_cross || staffMove)) {
if (!_cross || !staffMove) {
if (cr->up() != _up) {
cr->setUp(_up);
cr->layoutStem1();
Expand Down

0 comments on commit e0bd254

Please sign in to comment.