Temp gauge resets to zero at every update

The temperature gauge bounces form zero to the actual temperature every time there is an update to customclientraw from Weather Diisplay. It only does this on the temperature gauge.

Have a look here http://test.it-temp.com/#post-40

Why might this be?

You have gaugeGlobals.tempScaleDefMaxC set to 48, but the gauge rounds this to 50. When it does a compare of the desired max value against current, they do not match so it redraws the gauge.

The quick fix is to set gaugeGlobals.tempScaleDefMaxC to 50, though really the code should cope with this situation - I have added this ability to some of the other gauges, I should add it to the all!

Thank you. That did the trick.