diff Discovery/Src/tMenuEditPlanner.c @ 525:1f557e5f4b5a

Change color ID used in strings for light grey: CLUT of id 21 and 31 were the same. Changed CLUT of 21 back to a dark grey (used to show off state) and updated strings to 31 => No visible change in menus
author Ideenmodellierer
date Sun, 13 Sep 2020 20:49:58 +0200
parents 255eedad4155
children 1c95f811967c
line wrap: on
line diff
--- a/Discovery/Src/tMenuEditPlanner.c	Sun Sep 13 20:44:50 2020 +0200
+++ b/Discovery/Src/tMenuEditPlanner.c	Sun Sep 13 20:49:58 2020 +0200
@@ -493,7 +493,7 @@
         textptr += snprintf(&text[textptr],20," %3i'", lengthInMinutes);
     }
     else
-        textptr = snprintf(text,20,"\021\034%2u\016\016m\017 ",depthNext);
+        textptr = snprintf(text,20,"\031\034%2u\016\016m\017 ",depthNext);
 
     for(int i = 0; i < ListCount; i++)
     {
@@ -630,7 +630,7 @@
             text[textpointer] = 0;
 
             if(tMplan_pGasConsumption[j] == 0)
-                text[textpointer++] = '\021';
+                text[textpointer++] = '\031';
 
             textpointer += write_gas(&text[textpointer], settingsGetPointer()->gas[j].oxygen_percentage,   settingsGetPointer()->gas[j].helium_percentage );
             text[textpointer] = 0;
@@ -641,7 +641,7 @@
             text[textpointer] = 0;
 
             if(tMplan_pGasConsumption[j] == 0)
-                text[textpointer++] = '\021';
+                text[textpointer++] = '\031';
 
             textpointer += snprintf(&text[textpointer],20,"\002%u\016\016 ltr\017",tMplan_pGasConsumption[j]);
             text[textpointer] = 0;