set default "auto dot delay" to 100ms to prevent unwanted insertion of properties

e.g "a[b.alignof" when "a[.." is tried
This commit is contained in:
Basile Burg 2018-04-17 09:38:26 +02:00
parent 468d51b66a
commit 64ed15f50c
2 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ begin
fTxtSyn.Assign(TxtSyn);
//
fDDocDelay:=200;
fAutoDotDelay:=20;
fAutoDotDelay:=100;
fCurrLineAttribs := TSynSelectedColor.Create;
fSelAttribs := TSynSelectedColor.Create;
fFoldedColor := TSynSelectedColor.Create;

View File

@ -923,7 +923,7 @@ begin
fDDocTimer.Interval := fDDocDelay;
fDDocTimer.OnTimer := @DDocTimerEvent;
fAutoDotDelay := 20;
fAutoDotDelay := 100;
fAutoDotTimer := TIdleTimer.Create(self);
fAutoDotTimer.AutoEnabled:=true;
fAutoDotTimer.Interval := fAutoDotDelay;