summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-27 10:06:30 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-27 10:06:30 -0800
commit579c566bbe9a5dc5167aae0971d6e312a93e85bc (patch)
tree1025b3eb903255e4aff4e5474ee7aeea2ef2f183
parentc64e9ea28d307593b3607f2bb45914540524b9dc (diff)
downloadsubsurface-579c566bbe9a5dc5167aae0971d6e312a93e85bc.tar.gz
Rephrase tooltip
This seems to better explain what the button does. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-ui/profilegraphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp
index e55b2e52c..766f7cd5e 100644
--- a/qt-ui/profilegraphics.cpp
+++ b/qt-ui/profilegraphics.cpp
@@ -513,7 +513,7 @@ void ProfileGraphicsView::addControlItems(struct dive *d)
QAction *scaleAction = new QAction(QIcon(":scale"), tr("Scale"), this);
QAction *rulerAction = new QAction(QIcon(":ruler"), tr("Ruler"), this);
QToolBar *toolBar = new QToolBar("", 0);
- rulerAction->setToolTip(tr("Show a ruler to nit pecking your dive"));
+ rulerAction->setToolTip(tr("Measure properties of dive segments"));
scaleAction->setToolTip(tr("Scale your dive to screen size"));
toolBar->addAction(rulerAction);
toolBar->addAction(scaleAction);