qt: ellipse should be one pixel less (by hint of JoshyFun)

git-svn-id: trunk@18837 -
This commit is contained in:
paul 2009-02-27 16:29:13 +00:00
parent 2521adfc9c
commit a723a0f5eb

View File

@ -1263,7 +1263,7 @@ begin
if not IsValidDC(DC) then Exit;
TQtDeviceContext(DC).drawEllipse(x1, y1, X2 - X1, Y2 - Y1);
TQtDeviceContext(DC).drawEllipse(x1, y1, X2 - X1 - 1, Y2 - Y1 - 1);
Result := True;
end;