Sean P. DeNigris wrote
Does anyone know where the functionality lived?
Found it! Add the so-commented two lines below to restore two-way halo cycling. Am I the only one who misses this or should I add a setting? Morph>>handlerForBlueButtonDown: anEvent "Return the (prospective) handler for a mouse down event. The handler is temporarily installed and can be used for morphs further down the hierarchy to negotiate whether the inner or the outer morph should finally handle the event. Note: Halos handle blue button events themselves so we will only be asked if there is currently no halo on top of us." self wantsHaloFromClick ifFalse:[^nil]. "Add next two lines to restore two-way halo cycling" anEvent handler ifNil:[^self]. (anEvent handler isKindOf: PasteUpMorph) ifTrue:[^self]. (anEvent shiftPressed) ifFalse:[^nil] "let outer guy have it" ifTrue:[^self] "let me have it" -- View this message in context: http://forum.world.st/How-turn-on-Halo-s-tp2227309p4196786.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.