Andreas Raab uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ar.118.mcz==================== Summary ====================
Name: Tools-ar.118
Author: ar
Time: 25 August 2009, 12:24:55 pm
UUID: fb4833e3-124a-9740-b311-c7e99d1d50fc
Ancestors: Tools-ar.117
Fixes a small annoyance in MessageSets: when browsing senders, the initial selection wasn't auto-selecting the search string but only after the entry was deselected and selected again.
=============== Diff against Tools-ar.117 ===============
Item was changed:
----- Method: MessageSet>>buildWith: (in category 'toolbuilder') -----
buildWith: builder
+ | windowSpec max result |
- | windowSpec max |
self wantsOptionalButtons ifTrue:[max := 0.3] ifFalse:[max := 0.3].
windowSpec := self buildWindowWith: builder specs: {
(0@0 corner: 1@max) -> [self buildMessageListWith: builder].
(0@max corner: 1@1) -> [self buildCodePaneWith: builder].
}.
+ result := builder build: windowSpec.
+ self changed: #autoSelect.
+ ^result!
- ^builder build: windowSpec!