diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2014-05-30 23:46:55 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-01 20:20:17 -0700 |
commit | d825d689dd610b4e85f5a7b454927c6f4f3e2e4e (patch) | |
tree | 9a6a966dc5ba1078f0dc69163daba2e002c311f5 /qt-ui/maintab.cpp | |
parent | 89f35321452925182594304961193a8091368ff7 (diff) | |
download | subsurface-d825d689dd610b4e85f5a7b454927c6f4f3e2e4e.tar.gz |
Override the MinMaxAvgWidget tool tips for the depth instance.
Add new methods to the MinMaxAvgWidget class to allow us to override the
default tooltips of its min and max icons, and then uses these methods to
make the tooltips for the Stats tab Depth instance more descriptive.
See #521
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r-- | qt-ui/maintab.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index f308292e2..cf2e944e3 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -528,6 +528,8 @@ void MainTab::updateDiveInfo(int dive) ui.depthLimits->setMaximum(get_depth_string(stats_selection.max_depth, true)); ui.depthLimits->setMinimum(get_depth_string(stats_selection.min_depth, true)); ui.depthLimits->setAverage(get_depth_string(stats_selection.avg_depth, true)); + ui.depthLimits->overrideMaxToolTipText(QObject::tr("Deepest Dive")); + ui.depthLimits->overrideMinToolTipText(QObject::tr("Shallowest Dive")); ui.sacLimits->setMaximum(get_volume_string(stats_selection.max_sac, true).append(tr("/min"))); ui.sacLimits->setMinimum(get_volume_string(stats_selection.min_sac, true).append(tr("/min"))); ui.sacLimits->setAverage(get_volume_string(stats_selection.avg_sac, true).append(tr("/min"))); |