mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-22 11:59:29 +02:00
IDE: hint timer interval from editor options, bug #14382
git-svn-id: trunk@21308 -
This commit is contained in:
parent
3d56d5887b
commit
5522d6012c
@ -3411,7 +3411,7 @@ begin
|
|||||||
FHintTimer := TTimer.Create(Self);
|
FHintTimer := TTimer.Create(Self);
|
||||||
with FHintTimer do begin
|
with FHintTimer do begin
|
||||||
Name:=Self.Name+'_HintTimer';
|
Name:=Self.Name+'_HintTimer';
|
||||||
Interval := 1000;
|
Interval := EditorOpts.AutoDelayInMSec;
|
||||||
Enabled := False;
|
Enabled := False;
|
||||||
OnTimer := @HintTimer;
|
OnTimer := @HintTimer;
|
||||||
end;
|
end;
|
||||||
@ -6543,6 +6543,7 @@ Begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
SourceCompletionTimer.Interval:=EditorOpts.AutoDelayInMSec;
|
SourceCompletionTimer.Interval:=EditorOpts.AutoDelayInMSec;
|
||||||
|
FHintTimer.Interval:=EditorOpts.AutoDelayInMSec;
|
||||||
|
|
||||||
Exclude(States,snWarnedFont);
|
Exclude(States,snWarnedFont);
|
||||||
CheckFont;
|
CheckFont;
|
||||||
|
Loading…
Reference in New Issue
Block a user