Old content/screen when updating information on screen.
Hello
I'm using TouchGFX 4.10 with a custom board (STM32F767) and I have a problem, where old value/content will be displayed when updating another value on screen.
Procedure in which the problem occurs:
- I have two textareas on screen (e.g. TextA and TextB)
- The initial values are: TextA: "ABC" / TextB: "DEF"
- In General: The values will be updated through Model->Presenter->View / Touch is not used
- (Step1) Updating TextA to "123" and invalidating TextA
- Text on Screen -> TextA: "123" / TextB: "DEF"
- (Step 2) Updating TextB to "456" and invalidating TextB
- Text on Screen -> TextA: "ABC" / TextB: "456"
- TextA is wrong!
- (Step3) Updating TextB to "789" and invalidating TextB
- Text on Screen -> TextA "123" / TextB: "789"
- TextA and TextB are correct
- When I repeat Step 2 then I have the wrong values again
I don't know where the problem is, but I assume it has something to do with the doublebuffering. When I invalidate both values in every steps, it works correctly.
But this can/should not be the solution, because this happens not only with texts also with bitmaps and other widgets.
Has anyone an idea what is wrong?
Thanks
Best regards
Marco