Revert "OSD + BT + WF"

This reverts commit 36e6f8f2a8.
This commit is contained in:
Egor Shitikov
2024-08-20 03:33:32 -07:00
parent 36e6f8f2a8
commit 385053235b
8 changed files with 287 additions and 269 deletions
+2 -1
View File
@@ -143,10 +143,11 @@ void drawTicks(float every, int length)
void UI_drawCursor(int16_t possition)
{
// Draw animated cursor on reload process
// Draw animated vertical cursor on reload process
display_instance->setColor(BLACK);
display_instance->drawVerticalLine(possition, 0, HEIGHT);
display_instance->drawVerticalLine(possition + 1, 0, HEIGHT);
display_instance->drawVerticalLine(possition + 2, 0, HEIGHT);
display_instance->setColor(WHITE);
}