From 7e4fea476e4d8827db002c15d1842cbb27bf84e5 Mon Sep 17 00:00:00 2001 From: juha Date: Sat, 9 Aug 2014 12:07:05 +0000 Subject: [PATCH] SynEdit: Call Invalidate after activating the code completion hint for long lines. Issue #26554 git-svn-id: trunk@46025 - --- components/synedit/syncompletion.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/components/synedit/syncompletion.pas b/components/synedit/syncompletion.pas index 158d594cea..ec31c1d309 100644 --- a/components/synedit/syncompletion.pas +++ b/components/synedit/syncompletion.pas @@ -728,6 +728,7 @@ procedure TSynBaseCompletionForm.OnHintTimer(Sender: TObject); begin FHintTimer.Enabled := False; FHint.ActivateHint(ItemList[FHint.Index]); + FHint.Invalidate; end; procedure TSynBaseCompletionForm.KeyDown(var Key: Word; Shift: TShiftState);