TsFontStore needs to unload the loaded fonts Root › Technical support › Troubleshooting This topic has 2 replies, 2 voices, and was last updated 6 years, 4 months ago by HeDiBo. Viewing 3 posts - 1 through 3 (of 3 total) Author Posts July 3, 2018 at 2:43 pm #37884 HeDiBoParticipant The destructor of TsFontStore is: Code: destructor TsFontStore.Destroy; begin FFonts.Free; inherited; end; What is missing is something like this: Code: destructor TsFontStore.Destroy; begin UnloadFonts; FFonts.Free; inherited; end; because the fonts are still registered for the system but no longer available. Alternatively it could be in the destructor of TacEmbeddedFont, which already contains an UnLoadFont procedure (which is not used). July 9, 2018 at 11:36 am #58116 SupportKeymaster Hi I will add UnloadFont in the nearest release. July 17, 2018 at 11:42 am #58173 HeDiBoParticipant 'Support' wrote: Hi I will add UnloadFont in the nearest release. Done in AC 13.17 Author Posts Viewing 3 posts - 1 through 3 (of 3 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In Root › Technical support › Troubleshooting