diff --git a/libmscore/style.cpp b/libmscore/style.cpp index e9a147619f42f..6044983a9e35a 100644 --- a/libmscore/style.cpp +++ b/libmscore/style.cpp @@ -544,20 +544,22 @@ void MStyle::setChordList(ChordList* cl, bool custom) MStyle::MStyle(const MStyle& s) { - _values = s._values; - _chordList = s._chordList; - _textStyles = s._textStyles; + _values = s._values; + _precomputedValues = s._precomputedValues; + _chordList = s._chordList; + _textStyles = s._textStyles; _pageFormat.copy(s._pageFormat); - _customChordList = s._customChordList; + _customChordList = s._customChordList; } MStyle& MStyle::operator=(const MStyle& s) { - _values = s._values; - _chordList = s._chordList; - _textStyles = s._textStyles; + _values = s._values; + _precomputedValues = s._precomputedValues; + _chordList = s._chordList; + _textStyles = s._textStyles; _pageFormat.copy(s._pageFormat); - _customChordList = s._customChordList; + _customChordList = s._customChordList; return *this; }