From 4a184a60fcf9871c00f8130f03c1595c4003537e Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 23 Jun 2013 17:32:23 -0700 Subject: Print the rounded values for time and depth in planner This looks much more natural than truncating the values. Now the displayed numbers correspond to the "snap" behavior of the handles. Signed-off-by: Dirk Hohndel --- qt-ui/diveplanner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qt-ui') diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index d5a9aaa1f..f4f2fda06 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -168,9 +168,9 @@ void DivePlannerGraphics::mouseMoveEvent(QMouseEvent* event) verticalLine->setLine(mappedPos.x(), 0, mappedPos.x(), 100); horizontalLine->setLine(0, mappedPos.y(), 100, mappedPos.y()); - depthString->setText(QString::number((int) depthLine->valueAt(mappedPos)) + "m" ); + depthString->setText(QString::number(rint(depthLine->valueAt(mappedPos))) + "m" ); depthString->setPos(0, mappedPos.y()); - timeString->setText(QString::number((int) timeLine->valueAt(mappedPos)) + "min"); + timeString->setText(QString::number(rint(timeLine->valueAt(mappedPos))) + "min"); timeString->setPos(mappedPos.x()+1, 90); if (activeDraggedHandler) -- cgit v1.2.3-70-g09d2