summaryrefslogtreecommitdiffstats
path: root/qt-ui
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-01 16:43:30 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-01 16:43:30 -0800
commit4c4bc7180339b3ea8a4d956edbea566d9d4775c1 (patch)
tree9be8e3dd592aceb82c00f8bfe53c05ae418d5d2f /qt-ui
parentc4954d90a1e4f3fc3d2601e6bd6d95f27b0d78ed (diff)
downloadsubsurface-4c4bc7180339b3ea8a4d956edbea566d9d4775c1.tar.gz
Make the moving mean depth line a less obnoxious color
The red made it stand out way too much. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r--qt-ui/profile/diveprofileitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp
index 8e3d99fa6..443a0407f 100644
--- a/qt-ui/profile/diveprofileitem.cpp
+++ b/qt-ui/profile/diveprofileitem.cpp
@@ -571,7 +571,7 @@ void DiveTemperatureItem::paint(QPainter *painter, const QStyleOptionGraphicsIte
DiveMeanDepthItem::DiveMeanDepthItem()
{
QPen pen;
- pen.setBrush(QBrush(getColor(::MEAN_DEPTH)));
+ pen.setBrush(QBrush(getColor(::HR_AXIS)));
pen.setCosmetic(true);
pen.setWidth(2);
setPen(pen);