<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000;text-align: left" dir="ltr">
                                        Here is an example:<div><br></div><div><img id="37be5cda-a121-4447-ac05-39cf8a092d2d" src="cid:bc6ba135-6701-4506-b25c-a2e8edfb33a1" width="1386" height="431"></img><br></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 04.03.2021 15:38:47 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 Tools to project The Trunk:<br>http://source.squeak.org/trunk/Tools-mt.1029.mcz<br><br>==================== Summary ====================<br><br>Name: Tools-mt.1029<br>Author: mt<br>Time: 4 March 2021, 3:38:36.350661 pm<br>UUID: bef0c471-6ff1-774d-860e-8958e1aa508b<br>Ancestors: Tools-mt.1028<br><br>Enable source-code dragging through a browser's message list to be dropped into the world to open a compact code editor.<br><br>Complements Tools-mt.1028, ToolBuilder-Kernel-mt.139, ToolBuilder-Morphic-mt.274, and Morphic-mt.1733.<br><br>=============== Diff against Tools-mt.1028 ===============<br><br>Item was changed:<br>  ----- Method: Browser>>buildMessageListWith: (in category 'toolbuilder') -----<br>  buildMessageListWith: builder<br>   | listSpec |<br>          listSpec := builder pluggableListSpec new.<br>    listSpec <br>             model: self;<br>                  list: #messageList; <br>                  getIndex: #messageListIndex; <br>                 setIndex: #messageListIndex:; <br>                icon: #messageIconAt:;<br>                helpItem: #messageHelpAt:;<br>            menu: #messageListMenu:shifted:; <br>             keyPress: #messageListKey:from:.<br>+     SystemBrowser browseWithDragNDrop ifTrue: [<br>+          listSpec<br>+                     dragItem: #dragFromMessageList:;<br>+                     dragType: #dragTypeForMessageListAt:].<br>-       SystemBrowser browseWithDragNDrop <br>-           ifTrue:[listSpec dragItem: #dragFromMessageList:].<br>    ^listSpec<br>  !<br><br>Item was added:<br>+ ----- Method: Browser>>dragTypeForMessageListAt: (in category 'drag and drop') -----<br>+ dragTypeForMessageListAt: index<br>+ <br>+       ^ #sourceCode!<br><br><br></div></blockquote></div>