[squeak-dev] Re: FYI Squeak5.0 latest update: #15987

marcel.taeumel Marcel.Taeumel at hpi.de
Fri May 27 14:12:12 UTC 2016


Hi Timothy,

which time stamp does SimpleHierarchicalListMorph >> drawLinesOn: have in
your image? It seems rather old to me. The current version is mt 4/22/2016
10:52 :

SimpleHierarchicalListMorph >> drawLinesOn: aCanvas

	| lColor |
	lColor := self lineColor.
	aCanvas 
		transformBy: scroller transform
		clippingTo: scroller innerBounds
		during:[:clippedCanvas |
			scroller submorphsDo: [ :submorph |
				(submorph visible and: [(submorph isExpanded
					or: [clippedCanvas isVisible: submorph fullBounds] )
					or: [	submorph nextSibling notNil and: [clippedCanvas isVisible:
submorph nextSibling fullBounds]]]) 
						 ifTrue: [submorph drawLinesOn: clippedCanvas lineColor: lColor
indentThreshold: 0] ] ]
		smoothing: scroller smoothing.


Best, Marcel



--
View this message in context: http://forum.world.st/FYI-Squeak5-0-latest-update-15987-tp4897845p4897849.html
Sent from the Squeak - Dev mailing list archive at Nabble.com.


More information about the Squeak-dev mailing list