diff -r 6fe10704089b -r 209cc60527a4 Tools__ProjectBuilderAssistantApplication.st --- a/Tools__ProjectBuilderAssistantApplication.st Tue Jul 08 16:36:48 2014 +0200 +++ b/Tools__ProjectBuilderAssistantApplication.st Tue Jul 08 23:21:51 2014 +0200 @@ -3392,10 +3392,10 @@ self selectedApplicationIndexHolder value notNil ifTrue:[ comment := self commentFromClass:selectedApplication. comment isNil ifTrue:[ - comment := 'Application has no comment' allItalic colorizeAllWith:Color lightGrey. + comment := 'Application has no comment' allItalic colorizeAllWith:Color lightGray. ]. ] ifFalse:[ - comment := 'Please select an Application' allItalic colorizeAllWith:Color lightGrey. + comment := 'Please select an Application' allItalic colorizeAllWith:Color lightGray. ]. self selectedApplicationsComment value:comment. ! @@ -3406,10 +3406,10 @@ self selectedProjectIndexHolder value notNil ifTrue:[ comment := self commentFromClass:selectedProjectDefinition. comment isNil ifTrue:[ - comment := 'Project has no comment' allItalic colorizeAllWith:Color lightGrey. + comment := 'Project has no comment' allItalic colorizeAllWith:Color lightGray. ]. ] ifFalse:[ - comment := 'Please select a Project' allItalic colorizeAllWith:Color lightGrey. + comment := 'Please select a Project' allItalic colorizeAllWith:Color lightGray. ]. self selectedProjectsComment value:comment. !