/** hide all open popups */
  public void hidePopups() {
    if (this instanceof Popup) {
      ((Popup) this).setActive(false);
    }

    for (MultiTouchDrawable d : subDrawables) {
      d.hidePopups();
    }
  }