mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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>
This commit is contained in:
parent
c23e3adc29
commit
b5aa6b496f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue