Skip to content
Snippets Groups Projects
Commit 72e6cb66 authored by Karsten Rink's avatar Karsten Rink
Browse files

replaced some weird special char by a normal whitespace to avoid compilation errors

parent bd32bb16
No related branches found
No related tags found
No related merge requests found
...@@ -304,7 +304,7 @@ QModelIndex VtkVisPipeline::addPipelineItem(VtkVisPipelineItem* item, const QMod ...@@ -304,7 +304,7 @@ QModelIndex VtkVisPipeline::addPipelineItem(VtkVisPipelineItem* item, const QMod
int parentChildCount = parentItem->childCount(); int parentChildCount = parentItem->childCount();
QModelIndex newIndex = index(parentChildCount - 1, 0, parent); QModelIndex newIndex = index(parentChildCount - 1, 0, parent);
if (_resetCameraOnAddOrRemove || _rootItem->childCount() == 1) if (_resetCameraOnAddOrRemove || _rootItem->childCount() == 1)
_renderer->ResetCamera(_renderer->ComputeVisiblePropBounds()); _renderer->ResetCamera(_renderer->ComputeVisiblePropBounds());
_actorMap.insert(item->actor(), newIndex); _actorMap.insert(item->actor(), newIndex);
......
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