<div dir="auto">Good idea</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr"> <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>> schrieb am Do., 30. Jan. 2020, 19:05:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Christoph Thiede uploaded a new version of Morphic to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Morphic-ct.1622.mcz" rel="noreferrer noreferrer" target="_blank">http://source.squeak.org/inbox/Morphic-ct.1622.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-ct.1622<br>
Author: ct<br>
Time: 30 January 2020, 7:05:04.363325 pm<br>
UUID: 8641b370-6222-f948-aeda-fbb50f764f72<br>
Ancestors: Morphic-cmm.1618<br>
<br>
Proposal: Swap key and item of an Integer's explorer contents. Integer representations are not really keys, but rather values. In an explorer's code pane, this allows you to interact with the selected string representation (for example '101010') which is much more interesting than the base name (for example 'binary').<br>
<br>
=============== Diff against Morphic-cmm.1618 ===============<br>
<br>
Item was changed:<br>
  ----- Method: Integer>>explorerContents (in category '*Morphic-Explorer') -----<br>
  explorerContents<br>
<br>
        ^#(<br>
                ('hexadecimal' 16)<br>
                ('octal' 8)<br>
                ('binary' 2)) collect: [ :each |<br>
                        ObjectExplorerWrapper<br>
+                               with: (self printStringBase: each second)<br>
+                               name: each first translated<br>
-                               with: each first translated<br>
-                               name: (self printStringBase: each second)<br>
                                model: self ]!<br>
<br>
<br>
</blockquote></div>