Skip to content

Commit 43a5665

Browse files
committed
paintLogging: default to LOGGING_STANDARD
1 parent 1711c44 commit 43a5665

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Firmware/RTK_Everywhere/Display.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1861,10 +1861,6 @@ void paintLogging(std::vector<iconPropertyBlinking> *iconList, bool pulse, bool
18611861
{
18621862
prop.icon = LoggingNTPIconProperties.iconDisplay[loggingIconDisplayed][present.display_type];
18631863
}
1864-
else if (loggingType == LOGGING_STANDARD)
1865-
{
1866-
prop.icon = LoggingIconProperties.iconDisplay[loggingIconDisplayed][present.display_type];
1867-
}
18681864
else if (loggingType == LOGGING_PPP)
18691865
{
18701866
prop.icon = LoggingPPPIconProperties.iconDisplay[loggingIconDisplayed][present.display_type];
@@ -1873,6 +1869,10 @@ void paintLogging(std::vector<iconPropertyBlinking> *iconList, bool pulse, bool
18731869
{
18741870
prop.icon = LoggingCustomIconProperties.iconDisplay[loggingIconDisplayed][present.display_type];
18751871
}
1872+
else // if (loggingType == LOGGING_STANDARD)
1873+
{
1874+
prop.icon = LoggingIconProperties.iconDisplay[loggingIconDisplayed][present.display_type];
1875+
}
18761876

18771877
iconList->push_back(prop);
18781878
}

0 commit comments

Comments
 (0)