mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
d276f9cb08
commit
bd994c1722
1 changed files with 1 additions and 1 deletions
|
@ -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!") : "";
|
||||
|
|
Loading…
Add table
Reference in a new issue