SynEdit: fixed pageUp/Down for Column mode selection (thanks dmitry boyarintsev)

git-svn-id: trunk@18960 -
This commit is contained in:
martin 2009-03-11 18:04:11 +00:00
parent cfab0d6b4e
commit 87664b1185

View File

@ -5874,7 +5874,7 @@ begin
{$ENDIF}
if eoScrollByOneLess in fOptions then
Dec(counter);
if (Command in [ecPageUp, ecSelPageUp]) then
if (Command in [ecPageUp, ecSelPageUp, ecColSelPageUp]) then
counter := -counter;
{$IFDEF SYN_LAZARUS}
TopView := TopView + counter;