Mouse cursor hidden in Tripod and Utility

Cursor is visible when GUI is visible
This commit is contained in:
James Alliban
2014-01-22 20:31:12 +00:00
parent 8ad8d65b44
commit c0a0d9b0a1
22 changed files with 37 additions and 11 deletions
Binary file not shown.
+5 -1
View File
@@ -32,7 +32,11 @@ void testApp::update()
dataManager.update();
scene.update();
//if (gui.isVisible())
if(gui.getVisible())
ofShowCursor();
else
ofHideCursor();
}