<body><div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000">
                                        <img id="e479fd9c-2778-4f91-9e53-00f0b3e641ed" src="cid:2a4282c8-e4fd-44b8-a65d-8a5b7de712c6" width="auto"></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;">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 19.02.2020 17:12:28 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 EToys to project The Trunk:<br>http://source.squeak.org/trunk/EToys-mt.378.mcz<br><br>==================== Summary ====================<br><br>Name: EToys-mt.378<br>Author: mt<br>Time: 19 February 2020, 5:12:07.693123 pm<br>UUID: 9670284b-a77e-5c4f-8607-cd3fc0080719<br>Ancestors: EToys-mt.377<br><br>Fixes layout for automatic tile creation when dropping something in the Test area. Enable pop-up arrows by default in Etoys.<br><br>=============== Diff against EToys-mt.377 ===============<br><br>Item was changed:<br>  ----- Method: PhraseTileMorph>>setOperator:type:rcvrType:argType: (in category 'initialization') -----<br>  setOperator: opSymbol type: opType rcvrType: rcvrType argType: argType<br>        "Set the operator, type, receiver type, and argument type for the phrase"<br>  <br>       | aTileMorph |<br>  <br>    resultType := opType.<br>         opType ifNotNil: [self color: (ScriptingSystem colorForType: opType)].<br>        self removeAllMorphs.<br>+        self addMorph: (TilePadMorph new<br>+             setType: rcvrType;<br>+           changeTableLayout;<br>+           hResizing: #shrinkWrap;<br>+              vResizing: #shrinkWrap;<br>+              yourself).<br>-   self addMorph: (TilePadMorph new setType: rcvrType).<br>          aTileMorph := TileMorph new adoptVocabulary: self currentVocabulary.<br>          self addMorphBack: ((aTileMorph setOperator: opSymbol asString) typeColor: color).<br>    opSymbol numArgs = 1 ifTrue:<br>                  [self addMorphBack: (TilePadMorph new setType: (argType ifNil: [#Object]))]!<br><br>Item was changed:<br>  ----- Method: ReleaseBuilderSqueakland class>>setPreferences (in category 'scripts') -----<br>  setPreferences<br>  <br>   super setPreferences.<br>         <br>      [ "Reset all preferences to their default value but ensure that all control and alt keys stay duplicated."<br>                  Preferences cambridge.<br>                Preferences allPreferences do: [:each |<br>                       each defaultValue: each preferenceValue].<br>             Preferences<br>                   enable: #duplicateAllControlAndAltKeys.<br>       ] valueSupplyingAnswer: true.<br>  <br>     Preferences<br>           disable: #alternativeWindowBoxesLook;<br>                 enable: #magicHalos;<br>                  enable: #mouseOverHalos;<br>              enable: #showAdvancedNavigatorButtons;<br>                disable: #honorDesktopCmdKeys;<br>                enable: #unlimitedPaintArea;<br>                  enable: #fastDragWindowForMorphic;<br>            enable: #noviceMode;<br>                  disable: #generalizedYellowButtonMenu;<br>                disable: #signProjectFiles;<br>           enable: #alwaysShowHScrollBar;<br>                enable: #alwaysShowVScrollBar.<br>  <br>    "Rounded corners."<br>          Morph preferredCornerRadius: 8.<br>       PluggableButtonMorph roundedButtonCorners: true.<br>      DialogWindow roundedDialogCorners: true.<br>      SystemWindow roundedWindowCorners: true.<br>      ScrollBar roundedScrollBarLook: true.<br>  <br>     Cursor useBiggerCursors: true.<br>        TrashCanMorph<br>                 slideDismissalsToTrash: true;<br>                 preserveTrash: true.<br>          SugarNavigatorBar<br>             showHideButton: false;<br>                showSugarNavigator: true.<br>     Preferences disable: #showAdvancedNavigatorButtons.<br>+  TileMorph usePopUpArrows: true.<br>               <br>      "Ignore warnings."<br>          Deprecation showDeprecationWarnings: false.<br>   Preferences<br>           disable: #warnIfChangesFileReadOnly;<br>                  disable: #warnIfNoChangesFile;<br>                disable: #warnIfNoSourcesFile.<br>  !<br><br>Item was changed:<br>  ----- Method: ScriptEditorMorph>>initialize (in category 'initialization') -----<br>  initialize<br>      "initialize the state of the receiver"<br>      super initialize.<br>     ""<br>          self listDirection: #topToBottom;<br>              hResizing: #shrinkWrap;<br>               vResizing: #shrinkWrap;<br>               cellPositioning: #topLeft;<br>            setProperty: #autoFitContents toValue: true;<br>+                minHeight: TileMorph defaultH;<br>+               layoutInset: 2.<br>-       layoutInset: 2.<br>      self useRoundedCornersInEtoys.<br>        self borderColor: ScriptingSystem borderColor.<br>        self setNameTo: 'Script Editor' translated.<br>   firstTileRow := 1.<br>    "index of first tile-carrying submorph"<br>     self addNewRow.<br>       showingMethodPane := false.<br>  !<br><br><br></div></blockquote>
                                        </div></body>