Author: mark9064 <30447455+mark9064@users.noreply.github.com>
Process touch events only when awake
src/displayapp/DisplayApp.cpp | 2 +-
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 5d33f76e91289fe74d5cd7737b899270a385700f..4b168c43e338bd31702c24f47a18c6e2ca78e35a 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -472,7 +472,7 @@ break; } } - if (touchHandler.IsTouching()) { + if (state == States::Running && touchHandler.IsTouching()) { currentScreen->OnTouchEvent(touchHandler.GetX(), touchHandler.GetY()); }