The Trunk: Tools-mt.1045.mcz

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

The Trunk: Tools-mt.1045.mcz

commits-2
Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.1045.mcz

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

Name: Tools-mt.1045
Author: mt
Time: 26 April 2021, 9:56:40.676064 am
UUID: c897bfda-a607-e64c-b3ad-b6fb989d38a3
Ancestors: Tools-mt.1044

Tweak browser re-use to only consider the current class if that new browser does not care, which is the case for ivoking browsers from the smart search.

=============== Diff against Tools-mt.1044 ===============

Item was changed:
  ----- Method: Browser>>representsSameBrowseeAs: (in category 'morphic ui') -----
  representsSameBrowseeAs: anotherBrowser
 
  ^ self hasUnacceptedEdits not
  and: [self selectedClass == anotherBrowser selectedClass]
+ and: [anotherBrowser selectedMessageName isNil
+ or: [anotherBrowser selectedMessageName = self selectedMessageName]]!
- and: [self selectedMessage = anotherBrowser selectedMessage]!