Hi,
I would like each finder's pane to be a simple browser instead of just a presentation. The following does not work and I can't make it work. When the #selection port is triggered, a new pane is correctly added to the finder, but all of the finder's panes are updated with the same content as the new one.
|navigator finder|
navigator := GLMTabulator new. navigator row: #content. navigator transmit to: #content; andShow: [:a | a list display: #allSuperclasses]. navigator transmit from: #content; toOutsidePort: #selection.
finder := GLMFinder new. finder show: [:a | a custom: navigator].
finder openOn: String
Could you please tell me what I did wrong or if it's a bug?
Thank you