mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-13 12:59:19 +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);
|
||||
with FHintTimer do begin
|
||||
Name:=Self.Name+'_HintTimer';
|
||||
Interval := 1000;
|
||||
Interval := EditorOpts.AutoDelayInMSec;
|
||||
Enabled := False;
|
||||
OnTimer := @HintTimer;
|
||||
end;
|
||||
@ -6543,6 +6543,7 @@ Begin
|
||||
end;
|
||||
|
||||
SourceCompletionTimer.Interval:=EditorOpts.AutoDelayInMSec;
|
||||
FHintTimer.Interval:=EditorOpts.AutoDelayInMSec;
|
||||
|
||||
Exclude(States,snWarnedFont);
|
||||
CheckFont;
|
||||
|
Loading…
Reference in New Issue
Block a user