Skip to content

Commit

Permalink
Merge pull request #421 from shnmorimoto/CYD_SEL_PRESS_BUG
Browse files Browse the repository at this point in the history
bug fix for CYD SEL PRESS
  • Loading branch information
bmorcelli authored Nov 14, 2024
2 parents 823dca4 + 21f4e56 commit c70932f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ports/CYD-2432S028/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,16 @@ bool checkPrevPress() {
** location: mykeyboard.cpp
** Verifies if Select or OK was pressed
**********************************************************************/
bool checkSelPress(){
bool checkSelPress() {
if(menuPress(SEL)) {
if(wakeUpScreen()) {
delay(200);
return false;
}
return true;
}
return true;
}

else return false;
}


Expand Down

0 comments on commit c70932f

Please sign in to comment.