|
From: Eden K. <fo...@ap...> - 2001-03-06 19:48:28
|
hello there.
i found few bugs:
1. -------------------
concerning OnGutterClick event, this event is triggering as long as user
don't click in edit area. after this, event isn't triggered any more. here
is a bug fix:
procedure TCustomSynEdit.MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer);
........
// if (fMouseDownX < fGutterWidth) then <- bug in this line
if (X < fGutterWidth) then // <- corrected
Include(fStateFlags, sfPossibleGutterClick);
......
2. -------------------
TCustomSynAutoComplete sometimes (?) fail in destructor. to avoid this,
"inherited Destroy;" line should me moved from the end to the begin of
destructor method.
3. -------------------
SynHighlighterASM is missing instruction popa.
that's all for now.
eden
|