Hi,
To smoothen the difference between builders and view, I added the following method:
RTView>>view "This method is meant to be used polymorphically with builders. Thus, regardless of whether we get a raw view or a builder, we can uniformly obtain the view" ^ self
This is particularly useful in situations like:
self act: [ :roassal | RTZoomOutMove on: roassal view view ] icon: GLMUIThemeExtraIcons glamorousZoomOut entitled: 'Zoom out'
Here roassal is either a view or a builder.
Doru
It makes sense yes
Alexandre