Skip to content

Commit

Permalink
init only
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus authored and igorkorsukov committed Feb 13, 2024
1 parent c20cbe6 commit e044aaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/importexport/musicxml/internal/musicxml/exportxml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2015,12 +2015,12 @@ void ExportMusicXml::barlineRight(const Measure* const m, const track_idx_t stra
// note: use barlinetype as found in multi measure rest for last measure of replaced sequence
BarLineType bst = m == mmRLst ? mmR1->endBarLineType() : m->endBarLineType();
const bool visible = m->endBarLineVisible();
String color = String();
String color;

bool needBarStyle = (bst != BarLineType::NORMAL && bst != BarLineType::START_REPEAT) || !visible;
Volta* volta = findVolta(m, false, strack);
// detect short and tick barlines
String special = String();
String special;
const BarLine* bl = m->endBarLine();
if (bl) {
color = color2xml(bl);
Expand Down

0 comments on commit e044aaf

Please sign in to comment.