aboutsummaryrefslogtreecommitdiffstats
path: root/profile-widget/diveprofileitem.cpp
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2020-10-04 12:18:43 +0200
committerGravatar bstoeger <32835590+bstoeger@users.noreply.github.com>2020-10-05 10:17:29 +0200
commit4b4a117f966c16824e6980ecc835e30e4cb4db42 (patch)
tree8b2c970aca058aee2a60ed106e66ce83f042be89 /profile-widget/diveprofileitem.cpp
parent61f8b8c00282519db18614c1a85036be769ee15c (diff)
downloadsubsurface-4b4a117f966c16824e6980ecc835e30e4cb4db42.tar.gz
Use get_n2 helper function
Now, that we have this helper function that should have been introduced long ago, we can make some more expressions more idiomatic. Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'profile-widget/diveprofileitem.cpp')
-rw-r--r--profile-widget/diveprofileitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile-widget/diveprofileitem.cpp b/profile-widget/diveprofileitem.cpp
index efb2fceb7..a63b35863 100644
--- a/profile-widget/diveprofileitem.cpp
+++ b/profile-widget/diveprofileitem.cpp
@@ -415,7 +415,7 @@ void DivePercentageItem::paint(QPainter *painter, const QStyleOptionGraphicsItem
const struct event *ev = NULL;
int sec = dataModel->index(i, DivePlotDataModel::TIME).data().toInt();
gasmix = get_gasmix(&displayed_dive, displayed_dc, sec, &ev, gasmix);
- int inert = 1000 - get_o2(gasmix);
+ int inert = get_n2(gasmix) + get_he(gasmix);
mypen.setBrush(QBrush(ColorScale(value, inert)));
painter->setPen(mypen);
painter->drawLine(poly[i - 1], poly[i]);