diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-02-07 08:49:51 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-10 15:02:53 -0800 |
commit | 2dab00f5dc8fbb8c24b09975498122afabd14bba (patch) | |
tree | 0500ab9a785ced3ebb7d553f047772bef8729764 | |
parent | e0ad44c1b336045278fbd4a89b12b93f5f6a3a8d (diff) | |
download | subsurface-2dab00f5dc8fbb8c24b09975498122afabd14bba.tar.gz |
Change the tooltip for bailout
While this text makes sense if this is a CCR dive and the diver does bail
out, the more neutral text "Manual switch to OC" works in all use cases
for this event, e.g. at the beginning of a dive when we manually set this
dive to be OC.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/profile/diveeventitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveeventitem.cpp b/qt-ui/profile/diveeventitem.cpp index a966d6a5b..700430007 100644 --- a/qt-ui/profile/diveeventitem.cpp +++ b/qt-ui/profile/diveeventitem.cpp @@ -113,7 +113,7 @@ void DiveEventItem::setupToolTipString() } else if (type == SAMPLE_EVENT_PO2 && name == "SP change") { // this is a bad idea - we are abusing an existing event type that is supposed to // warn of high or low pO₂ and are turning it into a set point change event - name += "\n" + tr("Bailing out to OC"); + name += "\n" + tr("Manual switch to OC"); } else { name += internalEvent->flags == SAMPLE_FLAGS_BEGIN ? tr(" begin", "Starts with space!") : internalEvent->flags == SAMPLE_FLAGS_END ? tr(" end", "Starts with space!") : ""; |