Support Board
Date/Time: Sat, 10 May 2025 20:00:20 +0000
Post From: issue with reloading chart and array size
[2016-06-09 04:33:47] |
onnb - Posts: 663 |
....if this is not what you are expecting and have a reliance on it working as previously.
I ran into it with code like this breaking bool barClosed = index < sc.ArraySize - 1;
From your description the above and any code that would access sc.ArraySize would be potential to not working. Something like this for example if(sc.Index < sc.ArraySize-1) which quite common. Btw, related to the temporary cache, would it have made a difference if instead of the above sc.BarHasClosedStatus had been used? |