From 8db8ccf7828c71d7cf053c49bf6e912147c29a7e Mon Sep 17 00:00:00 2001 From: martin Date: Sat, 15 May 2010 14:15:51 +0000 Subject: [PATCH] Synedit-Completion: make end/home key work (independent of ctrl key) git-svn-id: trunk@25422 - --- components/synedit/syncompletion.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/synedit/syncompletion.pas b/components/synedit/syncompletion.pas index ae939b8ce2..6f568aac2c 100644 --- a/components/synedit/syncompletion.pas +++ b/components/synedit/syncompletion.pas @@ -522,9 +522,9 @@ begin for i := 1 to NbLinesInWindow do SelectNext; VK_END: - if ssCtrl in Shift then Position := ItemList.count - 1; + Position := ItemList.count - 1; VK_HOME: - if ssCtrl in Shift then Position := 0; + Position := 0; VK_UP: if ssCtrl in Shift then Position := 0