You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 20, 2026. It is now read-only.
// Erase NodeList after removeChild (client/src/UserInterface/Widgets/SessionGraph.cc)voidGraphWidget::GraphNodeRemove( SessionItem Session )
{
for ( int i = 0; i < NodeList.size(); i++ )
{
if ( Session.Name.compare( NodeList[ i ]->Name ) == 0 )
{
GraphScene->removeItem( NodeList[ i ]->Node->NodeEdge );
GraphScene->removeItem( NodeList[ i ]->Node );
MainNode->Node->removeChild( NodeList[ i ]->Node );
/* delete NodeList[ i ]->Node->NodeEdge; delete NodeList[ i ]->Node; delete NodeList[ i ]; */
NodeList.erase( NodeList.begin() + i ); // fix is herereturn;
}
}
}
Did You Do a Pull First?
Latest (You performed a pull first)
Did You Try With the Dev Branch?
Yes (You tried using the dev branch but the problem persist)