diff --git a/examples/ExampleBrowser/OpenGLGuiHelper.cpp b/examples/ExampleBrowser/OpenGLGuiHelper.cpp index b26dfbf59..5c0e995af 100644 --- a/examples/ExampleBrowser/OpenGLGuiHelper.cpp +++ b/examples/ExampleBrowser/OpenGLGuiHelper.cpp @@ -243,7 +243,10 @@ void OpenGLGuiHelper::removeAllGraphicsInstances() void OpenGLGuiHelper::removeGraphicsInstance(int graphicsUid) { - m_data->m_glApp->m_renderer->removeGraphicsInstance(graphicsUid); + if (graphicsUid>=0) + { + m_data->m_glApp->m_renderer->removeGraphicsInstance(graphicsUid); + }; }