setGUISheet(NULL), windows still rendered
Posted: Sun Sep 07, 2008 19:15
After calling CEGUISystem::setGUISheet(NULL), windows are still rendered.
Usually if I move the mouse, the window will disappear as it should.
I'm using CEGUI 0.6.1 w/OpenGLGUIRenderer (in SFML).
For now, I work around this by doing something like this:
But I feel this shouldn't be necessary.
Usually if I move the mouse, the window will disappear as it should.
I'm using CEGUI 0.6.1 w/OpenGLGUIRenderer (in SFML).
For now, I work around this by doing something like this:
Code: Select all
CEGUISystem->setGUISheet(NULL);
RootWindow->setVisible(false);
But I feel this shouldn't be necessary.