mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 19:39:17 +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;
|
t := Now;
|
||||||
if (t - StartTime > MIN_PROCESS_MSG_TIME) then begin
|
if (t - StartTime > MIN_PROCESS_MSG_TIME) then begin
|
||||||
Application.ProcessMessages;
|
Application.ProcessMessages;
|
||||||
Application.Idle(False);
|
if not FEditModeQueued then
|
||||||
|
Application.Idle(False);
|
||||||
StartTime := t;
|
StartTime := t;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user