01-07-2018, 18:20
Hi Engolling,
I have just checked, and you are right. It is a bug. There is an instruction in the draw_TXInfo_TFT() routine that its placed in the wrong place.
Fix will be included in next release.
Here is how to fix it:
In the draw_TXInfo_TFT() routine search for:
after that line, add this:
Now go to end of the same routine and delete the line with:
Thank you for reporting it.
I have just checked, and you are right. It is a bug. There is an instruction in the draw_TXInfo_TFT() routine that its placed in the wrong place.
Fix will be included in next release.
Here is how to fix it:
In the draw_TXInfo_TFT() routine search for:
Code:
activeWindow = TXinfo_Data;after that line, add this:
Code:
last_min = 99;Now go to end of the same routine and delete the line with:
Code:
last_min = 99;Thank you for reporting it.

