[etoys-dev] Etoys: Sugar-kfr.12.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 16 01:36:18 EDT 2011


Karl Ramberg uploaded a new version of Sugar to project Etoys:
http://source.squeak.org/etoys/Sugar-kfr.12.mcz

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

Name: Sugar-kfr.12
Author: kfr
Time: 16 May 2011, 7:36:05 am
UUID: b3085cae-f4ae-fd4e-8732-038b45be29da
Ancestors: Sugar-kfr.11

Fix to SQ-906

=============== Diff against Sugar-bf.10 ===============

Item was changed:
  ----- Method: SugarNavTab>>showNavBar (in category 'initialization') -----
  showNavBar
  	"Show the full nav-bar across the top of the screen."
  
  	self removeProperty: #collapsedMode.
  	referent delete.
+ 	
- 
  	referent rebuildButtons; hResizing: #spaceFill.
  	Preferences useArtificialSweetenerBar ifTrue: [referent configureForSqueakland].
  
  	self hResizing: #spaceFill.
  	self edgeToAdhereTo: #top.
  	self position: 0 at 0.
  	
  	self addMorph: referent!

Item was changed:
  ----- Method: SugarNavigatorBar>>rebuildButtons (in category 'initialization') -----
  rebuildButtons
+ 	(owner notNil and: [owner hasProperty: #collapsedMode]) 
+ 		ifTrue:[^self].
+ 	submorphs do: [:e | e delete].
+ 			self addButtons !
- 	(owner isNil or: [owner hasProperty: #collapsedMode])
- 		ifFalse: [
- 			submorphs do: [:e | e delete].
- 			self addButtons]!



More information about the etoys-dev mailing list