mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-30 01:51:18 +02:00
qt: ellipse should be one pixel less (by hint of JoshyFun)
git-svn-id: trunk@18837 -
This commit is contained in:
parent
2521adfc9c
commit
a723a0f5eb
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user