File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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+
15371555void 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 );
You can’t perform that action at this time.
0 commit comments