From 5b137657dd7f46939ca62e3ed1fb73356068b2e2 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 22 Mar 2020 08:52:04 +0100 Subject: [PATCH] fix #10 - calltip window position is incorrect when the argument is located on another line thant the call --- src/u_synmemo.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/u_synmemo.pas b/src/u_synmemo.pas index 5678e671..8c09d38e 100644 --- a/src/u_synmemo.pas +++ b/src/u_synmemo.pas @@ -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);