-
Hi! 🙂 I'm implementing a screensaver for my TouchArea {
clicked => { debug("also catched"); }
TouchArea {
clicked => { debug("catched"); }
}
} When I try this, only the inner-most Thanks! 🙂 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
I think @FloVanGH was trying to solve a similar issue for the energy monitor demo. How did you do that again? My naive and untested approach would be to place a touch area at the bottom:
I made a little example on SlintPad. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your interest in my use case! In the meantime I think I will simply redefine my own |
Beta Was this translation helpful? Give feedback.
Thanks for your interest in my use case! In the meantime I think I will simply redefine my own
TouchArea
with a custom hook inclicked
, and use thisMyTouchArea
everywhere. 🙂