mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 16:31:40 +02:00
LCL INTERFACES QT: removed wrong offset from Ellipse and RadialPie
files qtwinapi.inc and qtlclintf.inc git-svn-id: trunk@47651 -
This commit is contained in:
parent
cb26c9b482
commit
83ce9e7c08
@ -443,8 +443,8 @@ var
|
||||
begin
|
||||
Result := IsValidDC(DC) and (x2 > x1) and (y2 > y1);
|
||||
if Result then begin
|
||||
theWidth := x2 - x1 + 1;
|
||||
theHeight := y2 - y1 + 1;
|
||||
theWidth := x2 - x1;
|
||||
theHeight := y2 - y1;
|
||||
QPainter_drawPie(TQtDeviceContext(DC).Widget, x1, y1, theWidth, theHeight, Angle1, Angle2);
|
||||
end;
|
||||
end;
|
||||
|
@ -1492,7 +1492,7 @@ begin
|
||||
R := NormalizeRect(Rect(X1, Y1, X2, Y2));
|
||||
if IsRectEmpty(R) then Exit(True);
|
||||
|
||||
TQtDeviceContext(DC).drawEllipse(R.Left, R.Top, R.Right - R.Left - 1, R.Bottom - R.Top - 1);
|
||||
TQtDeviceContext(DC).drawEllipse(R.Left, R.Top, R.Right - R.Left, R.Bottom - R.Top{ - 1});
|
||||
Result := True;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user