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

commits at source.squeak.org commits at source.squeak.org
Sat May 21 17:39:11 UTC 2022


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

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

Name: Morphic-kfr.2000
Author: kfr
Time: 21 May 2022, 7:39:03.732977 pm
UUID: 9c8d4edd-b4ef-8649-a671-7a7f244a4662
Ancestors: Morphic-kfr.1999

Modal color picker balloon help must pop up above the tiny morphs, not on top of them

=============== Diff against Morphic-kfr.1999 ===============

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 at: (m topCenter ). 
- 							[(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]]]]!



More information about the Squeak-dev mailing list