mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Say in infobox if NDL or TTS calculation was cut-off
Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f1550c1a86
commit
374e137b16
1 changed files with 10 additions and 3 deletions
|
|
@ -1206,10 +1206,17 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me
|
||||||
* everything will be ok. */
|
* everything will be ok. */
|
||||||
put_string(b, translate("gettextFromC", "In deco (calc)\n"));
|
put_string(b, translate("gettextFromC", "In deco (calc)\n"));
|
||||||
} else if (prefs.calcndltts && entry->ndl_calc != 0) {
|
} else if (prefs.calcndltts && entry->ndl_calc != 0) {
|
||||||
|
if(entry->ndl_calc < MAX_PROFILE_DECO)
|
||||||
put_format(b, translate("gettextFromC", "NDL: %umin (calc)\n"), DIV_UP(entry->ndl_calc, 60));
|
put_format(b, translate("gettextFromC", "NDL: %umin (calc)\n"), DIV_UP(entry->ndl_calc, 60));
|
||||||
|
else
|
||||||
|
put_format(b, translate("gettextFromC", "NDL: >2h (calc)\n"));
|
||||||
}
|
}
|
||||||
if (entry->tts_calc)
|
if (entry->tts_calc) {
|
||||||
|
if (entry->tts_calc < MAX_PROFILE_DECO)
|
||||||
put_format(b, translate("gettextFromC", "TTS: %umin (calc)\n"), DIV_UP(entry->tts_calc, 60));
|
put_format(b, translate("gettextFromC", "TTS: %umin (calc)\n"), DIV_UP(entry->tts_calc, 60));
|
||||||
|
else
|
||||||
|
put_format(b, translate("gettextFromC", "TTS: >2h (calc)\n"));
|
||||||
|
}
|
||||||
if (entry->rbt)
|
if (entry->rbt)
|
||||||
put_format(b, translate("gettextFromC", "RBT: %umin\n"), DIV_UP(entry->rbt, 60));
|
put_format(b, translate("gettextFromC", "RBT: %umin\n"), DIV_UP(entry->rbt, 60));
|
||||||
if (entry->ceiling) {
|
if (entry->ceiling) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue