Skip to content

Commit

Permalink
fix #57496: Section Break pause properties don't stick if set to 0.00sec
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Apr 28, 2015
1 parent 3163a2d commit afe4878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/layoutbreak.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ QVariant LayoutBreak::propertyDefault(P_ID id) const
case P_ID::LAYOUT_BREAK:
return QVariant(); // LAYOUT_BREAK_LINE;
case P_ID::PAUSE:
return 0.0; // score()->styleD(StyleIdx::SectionPause);
return score()->styleD(StyleIdx::SectionPause);
default:
return Element::propertyDefault(id);
}
Expand Down

0 comments on commit afe4878

Please sign in to comment.