Myro.show() hangs in ipython notebook

Issue #144 resolved
Doug Blank created an issue

But this works fine:

def show(pic): win = makeWindowFast("Calico Graphics", pic.width, pic.height) pic.draw(win)

weird!

Comments (7)

  1. Doug Blank reporter

    It might be because it trying to access the isRealized flag... I'll look into that. Thanks for the list of functions that are broken:

      Myro.show()
      Myro.joystick()
      Processing.save()
      Processing.get()
    
  2. Doug Blank reporter

    I think that the GUI thread is not being set appropriately, and that is throwing stuff off.

  3. Doug Blank reporter

    Yes, Calico was originally written such that methods like PostSetup() where called from the GUI thread, but now they aren't necessarily. We need a foolproof method to know what the GUI thread ID is.

  4. Log in to comment