From 1985bcb29ecb80e7b06a664e4a29f2b9d0395737 Mon Sep 17 00:00:00 2001 From: Rick Walsh Date: Fri, 1 Dec 2017 09:06:46 +1100 Subject: Disable plan variation in recreational mode Calculating variations when in recreational mode doesn't make sense, and can prevent variations from being calculated when switching back to Buhlmann or VPM-B modes. Signed-off-by: Rick Walsh --- core/plannernotes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/plannernotes.c b/core/plannernotes.c index d4b335888..534061a87 100644 --- a/core/plannernotes.c +++ b/core/plannernotes.c @@ -110,7 +110,7 @@ void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool show_d get_current_date()); } - if (prefs.display_variations) + if (prefs.display_variations && decoMode() != RECREATIONAL) len += snprintf(buffer + len, sz_buffer - len, translate("gettextFromC", "Runtime: %dmin %s"), diveplan_duration(diveplan), "VARIATIONS
"); else -- cgit v1.2.3-70-g09d2