'From etoys2.1 of 8 August 2007 [latest update: #1628] on 12 September 2007 at 10:29:13 pm'! "Change Set: SugarNav15-yo Date: 12 September 2007 Author: Yoshiki Ohshima Change buttons in the SugarBar. The share button probably should have 'share with' field, and keep should have the name. "! !SugarNavigatorBar methodsFor: 'initialization' stamp: 'yo 9/12/2007 22:20'! makeTheSimpleButtons "Add the buttons for use in normal kids' mode." ^{ self buttonHelp. "self buttonNewProject." "self buttonPrev." "self buttonNext." "self buttonFind." self buttonPaint. self buttonSupplies. }, " ( Preferences includeSoundControlInNavigator ifTrue: [{self buttonSound}] ifFalse: [#()] )," { self buttonUndo. self buttonLanguage. self buttonShare. }, (((DisplayScreen actualScreenSize = OLPCVirtualScreen virtualScreenExtent) ifFalse: [{self buttonZoom}] ifTrue: [#()])), { #spacer. self buttonPublish. self buttonStop. } ! ! "Postscript: " SugarLibrary clearDefault. SugarNavigatorBar refreshButRetainOldContents. !