@@ -1853,6 +1853,7 @@ void paintLogging(std::vector<iconPropertyBlinking> *iconList, bool pulse, bool
1853
1853
loggingIconDisplayed %= LOGGING_ICON_STATES; // Wrap
1854
1854
1855
1855
iconPropertyBlinking prop;
1856
+ prop.icon .bitmap = nullptr ;
1856
1857
prop.duty = 0b11111111 ;
1857
1858
1858
1859
if (((online.logging == true ) && (logIncreasing || ntpLogIncreasing)) || (present.gnss_mosaicX5 && logIncreasing))
@@ -1861,6 +1862,10 @@ void paintLogging(std::vector<iconPropertyBlinking> *iconList, bool pulse, bool
1861
1862
{
1862
1863
prop.icon = LoggingNTPIconProperties.iconDisplay [loggingIconDisplayed][present.display_type ];
1863
1864
}
1865
+ else if (loggingType == LOGGING_STANDARD)
1866
+ {
1867
+ prop.icon = LoggingIconProperties.iconDisplay [loggingIconDisplayed][present.display_type ];
1868
+ }
1864
1869
else if (loggingType == LOGGING_PPP)
1865
1870
{
1866
1871
prop.icon = LoggingPPPIconProperties.iconDisplay [loggingIconDisplayed][present.display_type ];
@@ -1869,18 +1874,15 @@ void paintLogging(std::vector<iconPropertyBlinking> *iconList, bool pulse, bool
1869
1874
{
1870
1875
prop.icon = LoggingCustomIconProperties.iconDisplay [loggingIconDisplayed][present.display_type ];
1871
1876
}
1872
- else // if (loggingType == LOGGING_STANDARD)
1873
- {
1874
- prop.icon = LoggingIconProperties.iconDisplay [loggingIconDisplayed][present.display_type ];
1875
- }
1876
-
1877
- iconList->push_back (prop);
1877
+ // Could be LOGGING_UNKNOWN
1878
1878
}
1879
1879
else if (pulse)
1880
1880
{
1881
1881
prop.icon = PulseIconProperties.iconDisplay [loggingIconDisplayed][present.display_type ];
1882
- iconList->push_back (prop);
1883
1882
}
1883
+
1884
+ if (prop.icon .bitmap )
1885
+ iconList->push_back (prop);
1884
1886
}
1885
1887
1886
1888
// Survey in is running. Show 3D Mean and elapsed time.
0 commit comments