Is there a way to get a crash log from pythonista?
-
I am trying to put my scene in a CustomView using the ui editor.
I created a CustomView
I set the Custom View Class to SceneView
Gave it a name 'toto'I my main:
v = ui.load_view('MyUI') totoview = v['toto'] totoview.scene = Toto() # <-- Pythonista crashes here v.present()
Using
run(Toto(), frame_interval = 1)
works fine
Any idea on how to debug this?
Cheers
-
This appears to be a bug in either the
scene
or theui
module. I'll look into this, but there isn't really anything you can do to debug this, I'm afraid.
-
ok. the bug occurs even when instanciating a simple Scene() object which is ok when using
run(Scene())