cocoa: breaking forceful Window update to cause invalidation instead of the immediate redrawing. The forceful redrawing is exteremely slow in Cocoa. This potentially might introdcue some bugs, though helps to imrove the performance dramatically (in places where UpdateWindow() is heavly (ob)used)

git-svn-id: trunk@58515 -
This commit is contained in:
dmitry 2018-07-14 04:45:18 +00:00
parent f0aa55068a
commit 8eb5a276bc

View File

@ -830,7 +830,8 @@ end;
procedure LCLViewExtension.lclUpdate;
begin
display;
setNeedsDisplay_(true);
//display;
end;
procedure LCLViewExtension.lclRelativePos(var Left, Top: Integer);