diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2014-01-27 16:17:08 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-27 13:00:29 -0800 |
commit | fcc17c717dd0b380803fcbe161376df141b86c61 (patch) | |
tree | 4553441dbfb71c5a197f5065bac6acf27e768025 /qt-ui/profile | |
parent | 303badd5ceae56185ec8ffee0b8489c5a598babe (diff) | |
download | subsurface-fcc17c717dd0b380803fcbe161376df141b86c61.tar.gz |
Move the 'getSacColor' out of old profile and use it.
This patch makes the color of the cylinder pressure use the sac colors.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r-- | qt-ui/profile/diveprofileitem.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp index b7682f9df..23c41a708 100644 --- a/qt-ui/profile/diveprofileitem.cpp +++ b/qt-ui/profile/diveprofileitem.cpp @@ -359,9 +359,11 @@ void DiveGasPressureItem::paint(QPainter* painter, const QStyleOptionGraphicsIte QPen pen; pen.setCosmetic(true); pen.setWidth(2); + struct dive *d = getDiveById(dataModel->id()); + struct plot_data *entry = dataModel->data(); Q_FOREACH(const QPolygonF& poly, polygons) { - for (int i = 1, count = poly.count(); i < count; i++) { - pen.setBrush(QBrush(Qt::red)); // TODO: Fix the color. + for (int i = 1, count = poly.count(); i < count; i++, entry++) { + pen.setBrush(getSacColor(entry->sac, d->sac)); painter->setPen(pen); painter->drawLine(poly[i-1],poly[i]); } |