I think I found a bug in the ST - page 2

 
int init(){
    if (IsTesting() && !IsVisualMode()) Chart_Grabs = false;
 
Ok, thanks.
 
WHRoeder:

Almost . . . I have this in init() ;-)

if(!IsVisualMode() && IsTesting()) Chart_Grabs = false;
PS. I know it's effectively the same.
 
Mine was unambiguous. Yours depends on the precedence of ! vs && (Made you look?)
 
WHRoeder:
(Made you look?)
Indeed . . . thank you. :-) Just reminds me that even though my mql has improved a lot over the last 6 months I always have a long way to go.