Skip to content

Commit fbe84da

Browse files
committed
Fix display sort order
1 parent 97ff64b commit fbe84da

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Firmware/RTK_Surveyor/Display.ino

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2736,16 +2736,16 @@ void paintDisplaySetup()
27362736
// If we are on an L-Band unit, scroll GetKeys option
27372737
if (online.accelerometer)
27382738
{
2739-
printTextCenter("Bubble", 12 * 1, QW_FONT_8X16, 1, false);
2740-
printTextCenter("Config", 12 * 2, QW_FONT_8X16, 1, false);
2741-
printTextCenter("GetKeys", 12 * 0, QW_FONT_8X16, 1, false);
2739+
printTextCenter("Bubble", 12 * 0, QW_FONT_8X16, 1, false);
2740+
printTextCenter("Config", 12 * 1, QW_FONT_8X16, 1, false);
2741+
printTextCenter("GetKeys", 12 * 2, QW_FONT_8X16, 1, false);
27422742
printTextCenter("E-Pair", 12 * 3, QW_FONT_8X16, 1, true);
27432743
}
27442744
else
27452745
{
2746-
printTextCenter("Base", 12 * 1, QW_FONT_8X16, 1, false);
2747-
printTextCenter("Config", 12 * 2, QW_FONT_8X16, 1, false);
2748-
printTextCenter("GetKeys", 12 * 0, QW_FONT_8X16, 1, false);
2746+
printTextCenter("Base", 12 * 0, QW_FONT_8X16, 1, false);
2747+
printTextCenter("Config", 12 * 1, QW_FONT_8X16, 1, false);
2748+
printTextCenter("GetKeys", 12 * 2, QW_FONT_8X16, 1, false);
27492749
printTextCenter("E-Pair", 12 * 3, QW_FONT_8X16, 1, true);
27502750
}
27512751
}

0 commit comments

Comments
 (0)