Skip to content

Commit 6249d6f

Browse files
authored
Merge pull request #2 from tweep/tweep-patch-menuCursor
Cursor changed to >
2 parents c8e0cb1 + 6eada37 commit 6249d6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MenuLCD.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ bool MenuLCD::PrintMenu( char* pString[], int nLines, int nSelectedLine = 0 )
4949
if( i == nSelectedLine )
5050
{//this line should be surrounded by []
5151
m_pLCD->setCursor(0, i);
52-
m_pLCD->write( '[');
52+
m_pLCD->write( '>');
5353
m_pLCD->setCursor(1,i);
5454
m_pLCD->print( pString[i] );
5555
m_pLCD->setCursor(m_characters - 1, i);
56-
m_pLCD->write( ']');
56+
//m_pLCD->write( ']');
5757
}
5858
else
5959
{

0 commit comments

Comments
 (0)