[squeak-dev] The Inbox: Tools-jr.929.mcz

David T. Lewis lewis at mail.msen.com
Thu Jan 2 16:44:48 UTC 2020


I also tried it like this:

  Browser>>defaultBrowserTitle
      ^ 'System Browser on environment ', self class environment asString

And it seems quite acceptable to me. It serves as a reminder that
environments exist :-)

I'm not proposing that as a change, just making note of it.

Dave

On Thu, Jan 02, 2020 at 11:32:08AM -0500, David T. Lewis wrote:
> +1
> Dave
> 
> 
> On Wed, Jan 01, 2020 at 09:35:34PM +0100, Tobias Pape wrote:
> > +1
> > > On 30.12.2019, at 15:20, commits at source.squeak.org wrote:
> > > 
> > > A new version of Tools was added to project The Inbox:
> > > http://source.squeak.org/inbox/Tools-jr.929.mcz
> > > 
> > > ==================== Summary ====================
> > > 
> > > Name: Tools-jr.929
> > > Author: jr
> > > Time: 30 December 2019, 3:20:08.513977 pm
> > > UUID: 0a4d62fd-022e-1844-b6bc-db1502ab2466
> > > Ancestors: Tools-cmm.928
> > > 
> > > Show browsed environment in Browser title if it is not the default environment.
> > > 
> > > =============== Diff against Tools-cmm.928 ===============
> > > 
> > > Item was changed:
> > >  ----- Method: Browser>>defaultBrowserTitle (in category 'initialize-release') -----
> > >  defaultBrowserTitle
> > > + 	| title |
> > > + 	title := 'System Browser'.
> > > + 	^ environment = self class environment
> > > + 		ifTrue: [title]
> > > + 		ifFalse: [title, ' on environment ', environment asString]!
> > > - 	^ 'System Browser'!
> > > 
> > > 
> > 
> > 
> > 
> 


More information about the Squeak-dev mailing list