Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/engraving/dom/spanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,7 @@ void Spanner::add(EngravingItem* e)
ls->setTrack(track());
// ls->setAutoplace(autoplace());
ls->EngravingItem::setZ(z());
ls->EngravingItem::setVisible(visible());
m_segments.push_back(ls);
e->added();
}
Expand Down
2 changes: 1 addition & 1 deletion src/engraving/editing/editvisibility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void EditVisibility::toggleVisible(Transaction& tx, Score* score)
bool allVisible = true;

for (EngravingItem* item : score->selection().elements()) {
if (!item->visible()) {
if (!item->getProperty(Pid::VISIBLE).toBool()) {
allVisible = false;
break;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ class ExportMusicXml : public muse::Contextable
TrillHash m_trillStart;
TrillHash m_trillStop;
MusicXmlInstrumentMap m_instrMap;
PlayingTechniqueType m_currPlayTechnique;
PlayingTechniqueType m_currPlayTechnique = PlayingTechniqueType::Undefined;
bool m_isMxl = false;
};

Expand Down
Loading