mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-25 15:37:23 +01:00
* Fixed operand order for InvalidateRect in "ChangeInLine"
This commit is contained in:
parent
a4246cf62a
commit
852a8857ce
@ -71,7 +71,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
// Redraw all lines with changed SH flags
|
// Redraw all lines with changed SH flags
|
||||||
FWidget.InvalidateRect(line, 0, (CurLine - line) + 1, FWidget.PageWidth);
|
FWidget.InvalidateRect(line, 0, FWidget.PageWidth, (CurLine - line) + 1);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -258,7 +258,10 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.9 2000-01-31 19:23:37 sg
|
Revision 1.10 2000-02-10 18:11:30 sg
|
||||||
|
* Fixed operand order for InvalidateRect in "ChangeInLine"
|
||||||
|
|
||||||
|
Revision 1.9 2000/01/31 19:23:37 sg
|
||||||
* Fixed selection redrawing bugs
|
* Fixed selection redrawing bugs
|
||||||
* Changed "x1, y2, x2, y2" arguments to "x, y, w, h"
|
* Changed "x1, y2, x2, y2" arguments to "x, y, w, h"
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user