<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000;text-align: left" dir="ltr">
                                        > <span style="font-family: Arial, Helvetica, sans-serif;font-size: 13px">Avoid translucent color.</span><br style="font-family: Arial, Helvetica, sans-serif;font-size: 13px"><div><span style="font-family: Arial, Helvetica, sans-serif;font-size: 13px"><br></span></div><div><span style="font-family: Arial, Helvetica, sans-serif;font-size: 13px">Why? I did cut out the drop shadow. Translucent windows colors look so cool! :-D</span></div><div><img id="c8480d9f-c51c-4202-bcf5-0d71ff0a49df" src="cid:ef11b7be-3360-426c-81a3-b06a1b7d5df7" width="333" height="208"></img><span style="font-family: Arial, Helvetica, sans-serif;font-size: 13px"><br></span></div><div class="mb_sig"></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 01.05.2021 14:12:32 schrieb commits@source.squeak.org <commits@source.squeak.org>:</p><div style="font-family:Arial,Helvetica,sans-serif">A new version of Morphic was added to project The Inbox:<br>http://source.squeak.org/inbox/Morphic-ct.1769.mcz<br><br>==================== Summary ====================<br><br>Name: Morphic-ct.1769<br>Author: ct<br>Time: 1 May 2021, 2:12:17.510389 pm<br>UUID: aa271c07-344a-324a-afe4-3950d6c00839<br>Ancestors: Morphic-mt.1767<br><br>Make SystemWindow's paneColor more robust against missing models. Avoid translucent color.<br><br>=============== Diff against Morphic-mt.1767 ===============<br><br>Item was changed:<br>  ----- Method: SystemWindow>>paneColor (in category 'colors') -----<br>  paneColor<br>         | cc |<br>        (cc := self valueOfProperty: #paneColor) ifNotNil: [^cc].<br>     (model respondsTo: #windowColorToUse) ifTrue: [cc := model windowColorToUse].<br>+        cc ifNil: [cc := paneMorphs<br>+          detect: [:morph | morph color isTransparent not]<br>+             ifFound: [:morph | morph color asNontranslucentColor]<br>+                ifNone: [nil]].<br>-      cc ifNil: [cc := paneMorphs isEmptyOrNil ifFalse: [paneMorphs first color]].<br>          cc ifNil: [cc := self defaultColor].<br>          self paneColor: cc.<br>   ^cc!<br><br><br></div></blockquote></div>