The Trunk: ToolBuilder-Morphic-ct.253.mcz

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

The Trunk: ToolBuilder-Morphic-ct.253.mcz

commits-2
Marcel Taeumel uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-ct.253.mcz

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

Name: ToolBuilder-Morphic-ct.253
Author: ct
Time: 24 January 2020, 9:27:31.738262 pm
UUID: e0810ef0-e633-2047-bdda-a69a7c14f9a9
Ancestors: ToolBuilder-Morphic-mt.251

Fix a regression in ListMultipleChooser that led to missing invalidations of the PluggableListMorphOfMany. Probably introduced by the recent refactoring of list morphs.

To reproduce, run the following snippet and select multiple items (but don't move the cursor after clicking):

        Project uiManager chooseMultipleFrom: #(foo bar)

Only the first selection event triggered a #change before.

=============== Diff against ToolBuilder-Morphic-mt.251 ===============

Item was changed:
  ----- Method: ListMultipleChooser>>selectionAt:put: (in category 'accessing') -----
  selectionAt: index put: boolean
 
  self selection at: index put: boolean.
+ self changed: #selectionAt:!
- self changed: #selectedIndex!