Skip to content

Commit

Permalink
Merge branch 'master' of ssh://git.code.sf.net/p/free-cad/code
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Oct 21, 2014
2 parents 7602b8f + d98f883 commit 28d1bf5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Gui/View3DInventorViewer.cpp
Expand Up @@ -2669,11 +2669,11 @@ void View3DInventorViewer::setAntiAliasingMode(View3DInventorViewer::AntiAliasin
break;
};

if(getSoRenderManager()->getGLRenderAction()->isSmoothing() != smoothing)
if (getSoRenderManager()->getGLRenderAction()->isSmoothing() != smoothing)
getSoRenderManager()->getGLRenderAction()->setSmoothing(smoothing);

if(static_cast<QGLWidget*>(this->viewport())->format().samples() != buffers)
Base::Console().Message("To change multisampling settings please close and open the 3d view again");
if (static_cast<QGLWidget*>(this->viewport())->format().samples() != buffers)
Base::Console().Message("To change multisampling settings please close and open the 3d view again\n");

}

Expand Down

0 comments on commit 28d1bf5

Please sign in to comment.