Skip to content

Commit a2b773c

Browse files
committed
Updating to 5.00 build 2690 13 Oct 2020
1 parent dfb88c4 commit a2b773c

File tree

3 files changed

+198
-120
lines changed

3 files changed

+198
-120
lines changed

engine/metaeditor64.exe

-63.6 KB
Binary file not shown.

vsts-extension/CompileMql5Task/Include/Canvas/Canvas.mqh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3872,12 +3872,12 @@ void CCanvas::LineThick(const int x1,const int y1,const int x2,const int y2,cons
38723872
double dy=MathAbs(y2-y1);
38733873
if(dx==0)
38743874
{
3875-
LineThickVertical(x1,y1,y2,size,clr,style,end_style);
3875+
LineThickVertical(x1,y1,y2,clr,size,style,end_style);
38763876
return;
38773877
}
38783878
if(dy==0)
38793879
{
3880-
LineThickHorizontal(x1,x2,y1,size,clr,style,end_style);
3880+
LineThickHorizontal(x1,x2,y1,clr,size,style,end_style);
38813881
return;
38823882
}
38833883
//--- compute the linear coefficients of the two (scaled) edge functions

0 commit comments

Comments
 (0)