'From etoys2.2 of 1 October 2007 [latest update: #1741] on 31 October 2007 at 10:28:48 pm'! "Change Set: SugarNav18-yo Date: 31 October 2007 Author: Yoshiki Ohshima Even on a non-XO environment, it adds the project name text field."! !SugarNavigatorBar methodsFor: 'initialization' stamp: 'yo 10/31/2007 22:27'! makeTheSimpleButtons "Add the buttons for use in normal kids' mode." ^ {self buttonHelp}, ( true "SugarLauncher current isRunningInSugar" ifTrue: [{self makeProjectNameLabel}] ifFalse: [#()] ), { "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. Flaps disableGlobalFlaps: false. Flaps enableEToyFlaps. !