<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000;text-align: left" dir="ltr">
                                        Hi all --<div><br></div><div>Please report whether I am overlooking something here... It was kind of annoying that my entire TrueType cache was gone after just saving the image and keep on working.</div><div><br></div><div>Also see the companion commit TrueType-mt.71.</div><div><br></div><div>Best,</div><div>Marcel</div><blockquote class="history_container" type="cite" style="border-left-style: solid;border-width: 1px;margin-top: 20px;margin-left: 0px;padding-left: 10px;min-width: 500px">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 14.02.2022 17:40:00 schrieb commits@source.squeak.org <commits@source.squeak.org>:</p><div style="font-family:Arial,Helvetica,sans-serif">Marcel Taeumel uploaded a new version of Graphics to project The Trunk:<br>http://source.squeak.org/trunk/Graphics-mt.482.mcz<br><br>==================== Summary ====================<br><br>Name: Graphics-mt.482<br>Author: mt<br>Time: 14 February 2022, 5:39:41.237304 pm<br>UUID: 4613fffa-7d65-d143-a077-7315d58e8d50<br>Ancestors: Graphics-mt.481<br><br>Changes hibernation behavior of forms to only #hibernate on snapshot-and-quit. Do not #hibernate on snapshop-no-quit.<br><br>Why? Makes snapshotting and working with TrueType fonts more smooth/responsive.<br><br>=============== Diff against Graphics-mt.481 ===============<br><br>Item was removed:<br>- ----- Method: Form class>>shutDown (in category 'shut down') -----<br>- shutDown  "Form shutDown"<br>-   "Compress all instances in the system.  Will decompress on demand..."<br>-      Form allInstancesDo: [:f | f hibernate].<br>-     ColorForm allInstancesDo: [:f | f hibernate].!<br><br>Item was added:<br>+ ----- Method: Form class>>shutDown: (in category 'shut down') -----<br>+ shutDown: quitting<br>+         "When quitting, compress all instances in the system.  Will decompress on demand after start-up. Note that we avoid hibernating forms during no-quit snapshotting to keep the system as responsive as possible directly after."<br>+ <br>+        "Form shutDown: true"<br>+      quitting ifTrue: [<br>+           Form allInstancesDo: [:f | f hibernate].<br>+             ColorForm allInstancesDo: [:f | f hibernate]].!<br><br>Item was removed:<br>- ----- Method: StrikeFont class>>cleanUp (in category 'class initialization') -----<br>- cleanUp<br>-  "Flush synthesized strike fonts"<br>- <br>-       self allInstancesDo:[:sf| sf reset].!<br><br>Item was added:<br>+ ----- Method: StrikeFont class>>cleanUp: (in category 'class initialization') -----<br>+ cleanUp: aggressive<br>+ <br>+     aggressive ifTrue: [self allInstancesDo: [:sf | sf reset]].!<br><br><br></div></blockquote></div>