File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/engraving/rendering/score Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -270,10 +270,8 @@ void HarmonyLayout::layoutModifierParentheses(const Harmony* item)
270
270
for (size_t i = 0 ; i < itemList.size (); i++) {
271
271
HarmonyRenderItem* renderItem = itemList.at (i);
272
272
double padding = i != 0 ? computePadding (itemList.at (i - 1 ), renderItem) : 0.0 ;
273
- LOGI () << " padding: " << padding;
274
273
275
274
if (ChordSymbolParen* paren = dynamic_cast <ChordSymbolParen*>(renderItem)) {
276
- LOGI () << " PAREN" ;
277
275
if (paren->paren ->direction () == DirectionH::LEFT) {
278
276
additionalSpace += paren->paren ->width () + padding;
279
277
paren->movex (additionalSpace);
@@ -283,7 +281,6 @@ void HarmonyLayout::layoutModifierParentheses(const Harmony* item)
283
281
additionalSpace += paren->paren ->width () + padding;
284
282
}
285
283
} else if (TextSegment* ts = dynamic_cast <TextSegment*>(renderItem)) {
286
- LOGI () << ts->text ();
287
284
additionalSpace += padding;
288
285
ts->movex (additionalSpace);
289
286
}
You can’t perform that action at this time.
0 commit comments