mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-16 06:09:29 +02:00
SynEdit: SyncronEdit: idle calls only if edit has not been requested already
git-svn-id: trunk@21331 -
This commit is contained in:
parent
25d1bbf7ec
commit
72074fd87f
@ -1184,7 +1184,8 @@ begin
|
||||
t := Now;
|
||||
if (t - StartTime > MIN_PROCESS_MSG_TIME) then begin
|
||||
Application.ProcessMessages;
|
||||
Application.Idle(False);
|
||||
if not FEditModeQueued then
|
||||
Application.Idle(False);
|
||||
StartTime := t;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user