<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000;text-align: left" dir="ltr">
                                        <img id="ab66ad1b-166b-40d0-966a-80aae801aa8a" src="cid:1e1d2914-b4ba-460f-a08c-447d55448965" width="777" height="519"></img><br><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 26.01.2021 16:48:26 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-mt.1719.mcz<br><br>==================== Summary ====================<br><br>Name: Morphic-mt.1719<br>Author: mt<br>Time: 26 January 2021, 4:48:07.757802 pm<br>UUID: 613d0cd1-c5b4-4baf-ae61-45025f85b4ea<br>Ancestors: Morphic-mt.1718<br><br>Quick experiment to improve discoverability of modal dialogs. (Might be too annoying when planning to close-confirm many windows in a row.)<br><br>=============== Diff against Morphic-mt.1718 ===============<br><br>Item was changed:<br>  ----- Method: DialogWindow>>getUserResponse (in category 'running') -----<br>  getUserResponse<br>  <br>+         | hand world shade |<br>-         | hand world |<br>        self message ifEmpty: [messageMorph delete]. "Do not waste space."<br>          self paneMorph submorphs<br>              ifEmpty: ["Do not waste space and avoid strange button-row wraps."<br>                          self paneMorph delete.<br>                        self buttonRowMorph wrapDirection: #none]. <br>   <br>      hand := self currentHand.<br>     world := self currentWorld.<br>  <br>       self fullBounds.<br>      self moveToPreferredPosition.<br>+        <br>+     self exclusive ifTrue: [<br>+             world addMorphFront: (shade := Morph new color: (Color black alpha: 0.5); bounds: world bounds; lock; yourself).<br>+             SystemWindow topWindow ifNotNil: #comeToFront].<br>       self openInWorld: world.<br>      <br>      hand showTemporaryCursor: nil. "Since we are out of context, reset the cursor."<br>     <br>      hand keyboardFocus in: [:priorKeyboardFocus |<br>                 hand mouseFocus in: [:priorMouseFocus |<br>                       self exclusive ifTrue: [hand newMouseFocus: self].<br>                    hand newKeyboardFocus: self.<br>  <br>                      [[self isInWorld] whileTrue: [world doOneSubCycle]]<br>                           ifCurtailed: [self cancelDialog].<br>  <br>+                        shade ifNotNil: #abandon.<br>                     hand newKeyboardFocus: priorKeyboardFocus.<br>                    <br>                      self flag: #discuss. "Since 2016 we are having this *ping pong* between (a) restoring the prior mouse focus and (b) just clearing it globally. The former solution makes more sense while the latter fixes issues with some modal dialogs. We have to investigate this further."<br>                    hand releaseMouseFocus.<br>                       "hand newMouseFocus: priorMouseFocus."]].<br>  <br>       ^ result!<br><br><br></div></blockquote></div>