An error started to occur deleting the font after I replaced the library with a new one. Do the others have this problem or am I the only one?
Quote:
procedure DeinitializeSetup();
begin
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
ISArcExCleanUp;
FMXInnoShutDown;
end;
|
Moreover, I noticed an interesting feature, if you leave the order that I had earlier, then everything works fine.
Quote:
ISArcExCleanUp;
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
FMXInnoShutDown;
|