Hi,
Thanks to Usman, I found a problem in the VM with some kind of assignment structures. Of course it should work, but in the mean time, I commited a patch for 2.0 and 3.0 (in metacello, that was preventing some configurations to be loaded), but the same problem is present too in
GLMMorphicTabulatorRenderer>>renderCustomColumn:ofPane:inUI:inBrowser:
you might want to workaround it also. You just need to change:
self renderCustomRow: each ofPane: aPane inUI: (pane := GLMMorphic containerMorph) inBrowser: aBrowser.
for:
pane := GLMMorphic containerMorph. self renderCustomRow: each ofPane: aPane inUI: pane inBrowser: aBrowser.
yes, I know...this whould work, and *will* work, but in the mean time...
cheers, Esteban