SynEdit: make shift-alt-left_mouse behave similar to shift-left_mouse. Start selection from old caret position. Issue #13238

git-svn-id: trunk@18950 -
This commit is contained in:
martin 2009-03-10 22:12:47 +00:00
parent d0e67fd760
commit 7a5c870566

View File

@ -2236,11 +2236,10 @@ begin
then begin
if ssShift in Shift then
SetBlockEnd(LogCaretXY)
else begin
else
SetBlockBegin(LogCaretXY);
if (eoAltSetsColumnMode in Options) and (ssAlt in Shift) then
FBlockSelection.ActiveSelectionMode := smColumn
end;
if (eoAltSetsColumnMode in Options) and (ssAlt in Shift) then
FBlockSelection.ActiveSelectionMode := smColumn
end;
if (Button=mbMiddle)
and ([sfDblClicked,sfTripleClicked,sfQuadClicked]*fStateFlags=[])