add SharedLayouts ending circle in LayoutsEditor

pull/5/head
Michail Vourlakos 6 years ago
parent 2d89e60030
commit 568716e9d3

@ -193,7 +193,9 @@ void ActivitiesDelegate::paint(QPainter *painter, const QStyleOptionViewItem &op
pen.setStyle(Qt::SolidLine);
painter->setPen(pen);
painter->drawLine(xm, ym, xm, ym + thick);
//! draw ending cirlce
painter->drawEllipse(QPoint(xm, ym + thick/2), thick/4, thick/4);
} else {
painter->drawLine(option.rect.x() + space, y,
option.rect.x() + option.rect.width(), y);
@ -204,7 +206,9 @@ void ActivitiesDelegate::paint(QPainter *painter, const QStyleOptionViewItem &op
pen.setStyle(Qt::SolidLine);
painter->setPen(pen);
painter->drawLine(xm, ym, xm, ym + thick);
//! draw ending cirlce
painter->drawEllipse(QPoint(xm, ym + thick/2), thick/4, thick/4);
}
}
}

Loading…
Cancel
Save