fix #10 - calltip window position is incorrect when the argument is located on another line thant the call

This commit is contained in:
Basile Burg 2020-03-22 08:52:04 +01:00
parent 2f2792fd7d
commit 5b137657dd
1 changed files with 2 additions and 2 deletions

View File

@ -2739,13 +2739,13 @@ begin
CaretXY := p;
end;
DcdWrapper.getCallTip(s);
if s.isNotEmpty then
showCallTipsString(s, i);
if findOpenParen then
begin
CaretXY := o;
EndUpdate();
end;
if s.isNotEmpty then
showCallTipsString(s, i);
end;
procedure TDexedMemo.showCallTipsString(const tips: string; indexOfExpected: integer);