mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 17:55:55 +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;
|
||||
begin
|
||||
InterfaceObject.DrawArrow(Self, Canvas);
|
||||
inherited Paint;
|
||||
end;
|
||||
|
||||
procedure TArrow.InitializeWnd;
|
||||
|
@ -2795,8 +2795,13 @@ begin
|
||||
//InvalidateSelection;
|
||||
Invalidate
|
||||
end else begin
|
||||
InvalidateCell(FCol, FRow);
|
||||
InvalidateCell(DCol, DRow);
|
||||
if goRowSelect in Options then begin
|
||||
InvalidateRow(FRow);
|
||||
InvalidateRow(DRow);
|
||||
end else begin
|
||||
InvalidateCell(FCol, FRow);
|
||||
InvalidateCell(DCol, DRow);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user