Drawable::setTouchable() seems to be inverted?
I googled this and found nothing, so here it goes.
According to the documentation:
setTouchable(true) - enables touch events.
setTouchable(false) - disables touch events.
This however seems to not be the case in my software. I am using TouchGFX 4.18.1 and a template for STM32H750B-DK version 3.0.6.
I have made an error pupup window with a box with alpha 0 covering the entire screen in order to lock any touch events behind the popup window. I have wasted too much time in order to accidentaly discover, that the setTouchable() function works opposite to what was intented. So currently I'm using setTouchable(true) to disable touch events, and setTouchable(false) to enable them.
Is this a bug with my software, or maybe is this a simulator bug (I haven't tested it on harware yet) or maybe is it actually intended?
