diff --git a/ui/src/showmanager/sequenceitem.cpp b/ui/src/showmanager/sequenceitem.cpp index 57b63b882..47ac6f03e 100644 --- a/ui/src/showmanager/sequenceitem.cpp +++ b/ui/src/showmanager/sequenceitem.cpp @@ -83,6 +83,7 @@ void SequenceItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *opti uint stepFadeIn = step.fadeIn; uint stepFadeOut = step.fadeOut; uint stepDuration = step.duration; + if (m_chaser->fadeInMode() == Chaser::Common) stepFadeIn = m_chaser->fadeInSpeed(); if (m_chaser->fadeOutMode() == Chaser::Common) @@ -113,6 +114,10 @@ void SequenceItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *opti painter->setBrush(QBrush(Qt::NoBrush)); painter->drawRect(xpos, 0, stepWidth, TRACK_HEIGHT - 3); } + + QRect textRect = QRect(xpos + 1, 0, stepWidth - 1, TRACK_HEIGHT - 3); + painter->drawText(textRect, Qt::AlignBottom, step.note); + xpos += stepWidth; // draw step vertical delimiter