mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-26 05:00:25 +02:00
SynEdit, fixed Line-Indent if trim-spaces uses "Position Only"
git-svn-id: trunk@19672 -
This commit is contained in:
parent
ba06642516
commit
ff3a210ee6
@ -6000,7 +6000,8 @@ begin
|
||||
if LogCaretXY.X > Len + 1 then
|
||||
LogCaretXY.X := Len + 1;
|
||||
FTheLinesView.EditLineBreak(LogCaretXY.X, LogCaretXY.Y);
|
||||
if (eoAutoIndent in fOptions) and (LogCaretXY.X > 1) then begin
|
||||
if (eoAutoIndent in fOptions) and ((LogCaretXY.X > 1) or (Len = 0)) then
|
||||
begin
|
||||
Caret := CaretXY;
|
||||
Caret.Y := Caret.Y + 1;
|
||||
FTheLinesView.EditInsert(1, LogCaretXY.Y + 1,
|
||||
|
Loading…
Reference in New Issue
Block a user