summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2016-08-03 14:33:19 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-08-10 15:07:04 -0700
commitb5aa6b496fb7b64845ac2e19fd91b4c1aa52df75 (patch)
tree5363c322a4e4679f53f46818a049a02f38215ac0 /core
parentc23e3adc2939aeb8dc2099146ab6513fa9e6d3f5 (diff)
downloadsubsurface-b5aa6b496fb7b64845ac2e19fd91b4c1aa52df75.tar.gz
Replace the "stop" symbol in deco plan
Windows Server 2008 seems to be missing the heavy dash in Courier New. This replaces the symbol by an ordinary dash. Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core')
-rw-r--r--core/planner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/planner.c b/core/planner.c
index 601aac767..fe9176950 100644
--- a/core/planner.c
+++ b/core/planner.c
@@ -699,7 +699,7 @@ static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool
else if (dp->entered)
segmentsymbol = "&#10137;"; // right arrow for entered entered segment at constant depth
else
- segmentsymbol = "&#10134;"; // heavey minus sign for deco stop
+ segmentsymbol = "-"; // minus sign (a.k.a. horizontal line) for deco stop
len += snprintf(buffer + len, sz_buffer - len, "<tr><td style='padding-left: 10px; float: right;'>%s</td>", segmentsymbol);