pharo-spec / mars-gtk

The Gtk3 bindings for Pharo and Spec
14 stars 6 forks source link

crashing tree table on Gtk #26

Closed pavel-krivanek closed 4 years ago

pavel-krivanek commented 4 years ago

On Gtk, this example ends with vm crash. In Morphic it works correctly.

app := SpApplication new.
app useBackend: #Gtk.

tree := SpTreeTablePresenter newApplication: app.
tree roots: {Object};
        children: [ :aClass | aClass subclasses ].
tree openWithSpec.