ObjectProfile / Roassal3

The Roassal Visualization Engine
MIT License
95 stars 52 forks source link

Loading Roassal-Pharo9 in Pharo 11 introduces an infinite loop inSpDroplistPresenter #561

Closed ClotildeToullec closed 1 year ago

ClotildeToullec commented 1 year ago

In baseline:

baselineForPharo11: spec
    self baselineForPharo10: spec

and

baselineForPharo10: spec
"..."
    spec package: #'Roassal3-Pharo9'.
"..."

This package includes a method SpDropListPresenter>>#displayIcon::

displayIcon: aBlock
    self iconBlock: aBlock

In Pharo 11, #displayBlock has been deprecated and is automatically replaced by #displayIcon:. We thus get a recursive call:

displayIcon: aBlock
    self displayIcon: aBlock
akevalion commented 1 year ago

Fixed

You can find it here https://github.com/ObjectProfile/Roassal3/releases/tag/v1.01b