diff options
author | Robert C. Helling <helling@atdotde.de> | 2016-08-03 14:33:19 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-08-10 15:07:04 -0700 |
commit | b5aa6b496fb7b64845ac2e19fd91b4c1aa52df75 (patch) | |
tree | 5363c322a4e4679f53f46818a049a02f38215ac0 /core | |
parent | c23e3adc2939aeb8dc2099146ab6513fa9e6d3f5 (diff) | |
download | subsurface-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.c | 2 |
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 = "➙"; // right arrow for entered entered segment at constant depth else - segmentsymbol = "➖"; // 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); |