Skip to content

Commit d72f31b

Browse files
committed
New Sequencer will show plus instead down arrow
1 parent 06855d3 commit d72f31b

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

Applications/Sequencer/Sequencer.cpp

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,24 @@ static void RenderCross(Point origin, Color color)
15341534
}
15351535
}
15361536

1537+
static void RenderPlus(Point origin, Color color)
1538+
{
1539+
for (uint8_t x = 0; x < 4; ++x)
1540+
{
1541+
for (uint8_t y = 0; y < 4; ++y)
1542+
{
1543+
if (x == 1 || x == 2 || y == 1 || y == 2)
1544+
{
1545+
MatrixOS::LED::SetColor(origin + Point(x, y), color);
1546+
}
1547+
else
1548+
{
1549+
MatrixOS::LED::SetColor(origin + Point(x, y), Color::Black);
1550+
}
1551+
}
1552+
}
1553+
}
1554+
15371555
void Sequencer::ConfirmSaveUI()
15381556
{
15391557
UI confirmSaveUI("Confirm Save", meta.color, false);
@@ -1892,7 +1910,7 @@ void Sequencer::SequenceBrowser()
18921910
}
18931911
else
18941912
{
1895-
RenderDownArrow(Point(2, 2), Color::White);
1913+
RenderPlus(Point(2, 2), Color::White);
18961914
MatrixOS::LED::Update();
18971915
sequence.New(8);
18981916
meta.New(8);

0 commit comments

Comments
 (0)