mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 03:56:12 +02:00
fixed grid painting
git-svn-id: trunk@5213 -
This commit is contained in:
parent
f1c507bc10
commit
56c98b2587
@ -114,6 +114,7 @@ end;
|
|||||||
procedure TArrow.Paint;
|
procedure TArrow.Paint;
|
||||||
begin
|
begin
|
||||||
InterfaceObject.DrawArrow(Self, Canvas);
|
InterfaceObject.DrawArrow(Self, Canvas);
|
||||||
|
inherited Paint;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TArrow.InitializeWnd;
|
procedure TArrow.InitializeWnd;
|
||||||
|
@ -2795,8 +2795,13 @@ begin
|
|||||||
//InvalidateSelection;
|
//InvalidateSelection;
|
||||||
Invalidate
|
Invalidate
|
||||||
end else begin
|
end else begin
|
||||||
InvalidateCell(FCol, FRow);
|
if goRowSelect in Options then begin
|
||||||
InvalidateCell(DCol, DRow);
|
InvalidateRow(FRow);
|
||||||
|
InvalidateRow(DRow);
|
||||||
|
end else begin
|
||||||
|
InvalidateCell(FCol, FRow);
|
||||||
|
InvalidateCell(DCol, DRow);
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user