diff options
Diffstat (limited to 'qt-ui/profile/divecartesianaxis.cpp')
-rw-r--r-- | qt-ui/profile/divecartesianaxis.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/profile/divecartesianaxis.cpp b/qt-ui/profile/divecartesianaxis.cpp index e176d4f73..705e06a1c 100644 --- a/qt-ui/profile/divecartesianaxis.cpp +++ b/qt-ui/profile/divecartesianaxis.cpp @@ -183,6 +183,7 @@ void DiveCartesianAxis::updateTicks() label->setBrush(QBrush(textColor)); label->setBrush(colorForValue(currValueText)); label->setScale(fontLabelScale()); + label->setZValue(1); labels.push_back(label); if (orientation == RightToLeft || orientation == LeftToRight) { label->setAlignment(Qt::AlignBottom | Qt::AlignHCenter); @@ -209,6 +210,7 @@ void DiveCartesianAxis::updateTicks() pen.setCosmetic(true); pen.setWidthF(2); line->setPen(pen); + line->setZValue(0); lines.push_back(line); if (orientation == RightToLeft || orientation == LeftToRight) { line->setLine(0,-line_size,0, 0); |