Skip to content

Commit 25907e3

Browse files
committed
Remove logging from HarmonyLayout::layoutModifierParentheses
1 parent 8928adc commit 25907e3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/engraving/rendering/score/harmonylayout.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,8 @@ void HarmonyLayout::layoutModifierParentheses(const Harmony* item)
270270
for (size_t i = 0; i < itemList.size(); i++) {
271271
HarmonyRenderItem* renderItem = itemList.at(i);
272272
double padding = i != 0 ? computePadding(itemList.at(i - 1), renderItem) : 0.0;
273-
LOGI() << "padding: " << padding;
274273

275274
if (ChordSymbolParen* paren = dynamic_cast<ChordSymbolParen*>(renderItem)) {
276-
LOGI() << "PAREN";
277275
if (paren->paren->direction() == DirectionH::LEFT) {
278276
additionalSpace += paren->paren->width() + padding;
279277
paren->movex(additionalSpace);
@@ -283,7 +281,6 @@ void HarmonyLayout::layoutModifierParentheses(const Harmony* item)
283281
additionalSpace += paren->paren->width() + padding;
284282
}
285283
} else if (TextSegment* ts = dynamic_cast<TextSegment*>(renderItem)) {
286-
LOGI() << ts->text();
287284
additionalSpace += padding;
288285
ts->movex(additionalSpace);
289286
}

0 commit comments

Comments
 (0)