SynEdit: SyncronEdit: idle calls only if edit has not been requested already

git-svn-id: trunk@21331 -
This commit is contained in:
martin 2009-08-19 19:57:20 +00:00
parent 25d1bbf7ec
commit 72074fd87f

View File

@ -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;