Better setup of the defaults for the grid.

This patch creates better defaults for the grid lines, size, position and
z-level.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2014-02-15 22:49:30 -02:00 committed by Dirk Hohndel
parent 883b25cea3
commit 4699363a9e
2 changed files with 3 additions and 1 deletions

View file

@ -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);

View file

@ -126,7 +126,7 @@ void ProfileWidget2::setupItemOnScene()
profileYAxis->setTickSize(1);
profileYAxis->setLineSize(96);
timeAxis->setLineSize(96);
timeAxis->setLineSize(94);
gasYAxis->setOrientation(DiveCartesianAxis::BottomToTop);
gasYAxis->setTickInterval(1);