Marcel Taeumel uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mt.1169.mcz==================== Summary ====================
Name: Kernel-mt.1169
Author: mt
Time: 18 May 2018, 8:55:01.039917 am
UUID: e5e24186-05f2-2849-adb0-b2b2572b0f79
Ancestors: Kernel-nice.1168
Reduces the use of #cmdGesturesEnabled, which is also quite Morphic-specific. In preparation of two new preferences #haloForAll and #metaMenuForAll.
=============== Diff against Kernel-nice.1168 ===============
Item was changed:
----- Method: Object>>addModelYellowButtonMenuItemsTo:forMorph:hand: (in category 'graph model') -----
addModelYellowButtonMenuItemsTo: aCustomMenu forMorph: aMorph hand: aHandMorph
"The receiver serves as the model for aMorph; a menu is being constructed for the morph, and here the receiver is able to add its own items"
+
+ aCustomMenu add: 'inspect model' translated target: self action: #inspect.
- Preferences cmdGesturesEnabled ifTrue: [ "build mode"
- aCustomMenu add: 'inspect model' translated target: self action: #inspect.
- ].
-
^aCustomMenu
!
Item was changed:
----- Method: Object>>hasModelYellowButtonMenuItems (in category 'graph model') -----
hasModelYellowButtonMenuItems
+ ^ true!
- ^Preferences cmdGesturesEnabled!