# HG changeset patch
# User Ideenmodellierer
# Date 1608672191 -3600
# Node ID eecb52ab1fce25b7c4af9b29217ff64a84ef04cd
# Parent  8d95bab5bf6a975943b5f25af9a206d96659a8be
Align VPM tag in log list to be at same position as GF tag:
In the previous version the VPM tag caused the line string to be longer as allowed. As result the log entries of the next dives / lines were not displayed. The change reduces the number of blanks and formats the line in a similar shape as if a GF dive would be displayed.

diff -r 8d95bab5bf6a -r eecb52ab1fce Discovery/Src/tInfoLog.c
--- a/Discovery/Src/tInfoLog.c	Thu Dec 17 10:58:28 2020 +0100
+++ b/Discovery/Src/tInfoLog.c	Tue Dec 22 22:23:11 2020 +0100
@@ -385,7 +385,7 @@
             	}
                 break;
             case 2:
-                textPointer += snprintf(&text[textPointer],20,"\016\016 VPM \017");
+                textPointer += snprintf(&text[textPointer],20,"\016\016VPM\017");
                 break;
             default:
                 textPointer += snprintf(&text[textPointer],20,"\016\016  *  \017");