The Inbox: Tools-eem.431.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Tools-eem.431.mcz

commits-2
A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-eem.431.mcz

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

Name: Tools-eem.431
Author: eem
Time: 17 December 2012, 11:24:24.985 am
UUID: 29a0510c-1922-4513-baef-e31de47670c7
Ancestors: Tools-fbs.430

Fix findAMonticelloBrowser (shift-cmd-O) to find existing
MBs, not always create new ones.

=============== Diff against Tools-fbs.430 ===============

Item was changed:
  ----- Method: PasteUpMorph>>findAMonticelloBrowser (in category '*Tools') -----
  findAMonticelloBrowser
+ (Smalltalk classNamed: #MCWorkingCopyBrowser) ifNotNil:
+ [:mc|
+ self
+ findAWindowSatisfying: [:aWindow | aWindow model isMemberOf: mc]
+ orMakeOneUsing: [mc open]]!
- (Smalltalk classNamed: #MCWorkingCopyBrowser) ifNotNil: [ : mc | mc open ]!