[squeak-dev] The Trunk: Morphic-mt.1576.mcz

Marcel Taeumel marcel.taeumel at hpi.de
Tue Oct 15 11:40:58 UTC 2019


That one:


Best,
Marcel
Am 15.10.2019 13:40:39 schrieb commits at source.squeak.org <commits at source.squeak.org>:
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1576.mcz

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

Name: Morphic-mt.1576
Author: mt
Time: 15 October 2019, 1:40:15.667692 pm
UUID: b5b011fc-e1f1-414d-8109-61b95c71ca78
Ancestors: Morphic-mt.1575

Fixes that annoying huge stack of progress bars that pops up when loading/refreshing code in Monticello.

=============== Diff against Morphic-mt.1575 ===============

Item was changed:
----- Method: PluggableListMorph>>getList (in category 'model access - cached') -----
getList
"Answer the (maybe filtered) list to be displayed. Cached result, see #updateList."

^ list ifNil: [
+ list := #(). "To make this call safe when re-entering it while fetching the list. This can happen, for example, when the model fetches data that opens the system progress bar which then will redraw periodically."
list := self filterableList
ifTrue: [self getFilteredList]
ifFalse: [self getFullList].
self updateListMorph.
list]!


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20191015/eeaed1b2/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 32662 bytes
Desc: not available
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20191015/eeaed1b2/attachment.png>


More information about the Squeak-dev mailing list