Christoph Thiede uploaded a new version of PreferenceBrowser to project The Inbox:
http://source.squeak.org/inbox/PreferenceBrowser-ct.103.mcz==================== Summary ====================
Name: PreferenceBrowser-ct.103
Author: ct
Time: 17 February 2020, 12:40:10.398878 am
UUID: 54167600-bc28-4a42-bd0c-7a597a70cd6b
Ancestors: PreferenceBrowser-dtl.100
Fixes a bug that made it impossible to open a ServiceBrowser when a regular PreerenceBrowser was opened before. Thanks to Jakob for the report!
=============== Diff against PreferenceBrowser-dtl.100 ===============
Item was changed:
----- Method: PreferenceBrowser>>representsSameBrowseeAs: (in category 'user interface') -----
representsSameBrowseeAs: anotherModel
"If an existing Preference browser is on-screen, use it."
+ ^ self class = anotherModel class and: [self preferences = anotherModel preferences]!
- ^ self class = anotherModel class!