Skip to content

Commit

Permalink
chg default of new prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-T committed Mar 21, 2020
1 parent ed7a85b commit a78a8bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atsynedit/atsynedit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1572,7 +1572,7 @@ TATSynEdit = class(TCustomControl)
property OptKeyUpDownKeepColumn: boolean read FOptKeyUpDownKeepColumn write FOptKeyUpDownKeepColumn default true;
property OptKeyHomeEndNavigateWrapped: boolean read FOptKeyHomeEndNavigateWrapped write FOptKeyHomeEndNavigateWrapped default true;
property OptKeyPageUpDownSize: TATPageUpDownSize read FOptKeyPageUpDownSize write FOptKeyPageUpDownSize default cPageSizeFullMinus1;
property OptKeyLeftRightGoToNextLineWithCarets: boolean read FOptKeyLeftRightGoToNextLineWithCarets write FOptKeyLeftRightGoToNextLineWithCarets default false;
property OptKeyLeftRightGoToNextLineWithCarets: boolean read FOptKeyLeftRightGoToNextLineWithCarets write FOptKeyLeftRightGoToNextLineWithCarets default true;
property OptKeyLeftRightSwapSel: boolean read FOptKeyLeftRightSwapSel write FOptKeyLeftRightSwapSel default true;
property OptKeyLeftRightSwapSelAndSelect: boolean read FOptKeyLeftRightSwapSelAndSelect write FOptKeyLeftRightSwapSelAndSelect default false;
property OptKeyHomeToNonSpace: boolean read FOptKeyHomeToNonSpace write FOptKeyHomeToNonSpace default true;
Expand Down Expand Up @@ -3753,7 +3753,7 @@ constructor TATSynEdit.Create(AOwner: TComponent);
FOptShowMouseSelFrame:= cInitShowMouseSelFrame;

FOptKeyPageUpDownSize:= cPageSizeFullMinus1;
FOptKeyLeftRightGoToNextLineWithCarets:= false;
FOptKeyLeftRightGoToNextLineWithCarets:= true;
FOptKeyLeftRightSwapSel:= true;
FOptKeyLeftRightSwapSelAndSelect:= false;
FOptKeyHomeToNonSpace:= true;
Expand Down

0 comments on commit a78a8bc

Please sign in to comment.