Skip to content
Snippets Groups Projects
Commit 214d8dcb authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Handle changing layer pointer on reconnect

parent 5321f7fa
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,10 @@ namespace armarx
{
if (layerID == this->layerID)
{
ARMARX_CHECK_EQUAL(this->layer, &layer) << "Layer pointer is not expected to change.";
// If the layer object identified by layerID changed, we should use the new one.
// This can happen when the gui plugin reconnects.
this->layer = &layer;
this->update();
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment