From 39e47845d7c494571c87a09e4a0216ea6ed845c0 Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Tue, 10 Dec 2024 16:48:41 +1300 Subject: [PATCH] Profile: Clarify the Gradient Factor Display. Clarify that the gradient factor displayed in green in the profile is the gradient factor that is set in Subsurface, and not the one used by the dive computer. Fixes #4396. Signed-off-by: Michael Keller --- profile-widget/profilescene.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile-widget/profilescene.cpp b/profile-widget/profilescene.cpp index 07abd098c..51cb4f195 100644 --- a/profile-widget/profilescene.cpp +++ b/profile-widget/profilescene.cpp @@ -417,9 +417,9 @@ void ProfileScene::plotDive(const struct dive *dIn, int dcIn, DivePlannerPointsM if (!plannerModel) { if (decoMode(false) == VPMB) - decoModelParameters->set(QString("VPM-B +%1").arg(prefs.vpmb_conservatism), getColor(PRESSURE_TEXT)); + decoModelParameters->set(QString("Subsurface VPM-B +%1").arg(prefs.vpmb_conservatism), getColor(PRESSURE_TEXT)); else - decoModelParameters->set(QString("GF %1/%2").arg(prefs.gflow).arg(prefs.gfhigh), getColor(PRESSURE_TEXT)); + decoModelParameters->set(QString("Subsurface GF %1/%2").arg(prefs.gflow).arg(prefs.gfhigh), getColor(PRESSURE_TEXT)); } else { struct diveplan &diveplan = plannerModel->getDiveplan(); if (decoMode(inPlanner) == VPMB)