[squeak-dev] The Inbox: Morphic-kfr.1997.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 20 20:29:15 UTC 2022


A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-kfr.1997.mcz

==================== Summary ====================

Name: Morphic-kfr.1997
Author: kfr
Time: 20 May 2022, 10:29:07.422038 pm
UUID: 46fbabc8-418d-eb41-8cc3-26c36309149c
Ancestors: Morphic-ct.1996

Get rid of balloon help

=============== Diff against Morphic-ct.1996 ===============

Item was changed:
  ----- Method: ColorPickerMorph>>modalBalloonHelpAtPoint: (in category 'private') -----
  modalBalloonHelpAtPoint: cursorPoint 
  	self flag: #arNote.	"Throw this away. There needs to be another way."
  	self submorphsDo: 
  			[:m | 
  			m wantsBalloon 
  				ifTrue: 
  					[(m valueOfProperty: #balloon) isNil
  						ifTrue: 
+ 							[(m containsPoint: cursorPoint) ifTrue: [m showBalloon: m balloonText. 
+ 								m setProperty: #balloon toValue: true]]
+ 						ifFalse: [(m containsPoint: cursorPoint) ifFalse: [self deleteBalloon.
+ 								m setProperty: #balloon toValue:nil]]]]!
- 							[(m containsPoint: cursorPoint) ifTrue: [m showBalloon: m balloonText]]
- 						ifFalse: [(m containsPoint: cursorPoint) ifFalse: [m deleteBalloon]]]]!



More information about the Squeak-dev mailing list