From 2fefc911fd39b1086aa4e6b0728f63c2d184d679 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 16 Jul 2008 16:05:43 +0000 Subject: [PATCH] Set the default setting of LineWidth to 2.0 to ensure that old default behavior is maintained. --- src/osgFX/Cartoon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgFX/Cartoon.cpp b/src/osgFX/Cartoon.cpp index b92151dde..ff3853c7d 100644 --- a/src/osgFX/Cartoon.cpp +++ b/src/osgFX/Cartoon.cpp @@ -272,7 +272,7 @@ namespace Cartoon::Cartoon() : Effect(), _wf_mat(new osg::Material), - _wf_lw(new osg::LineWidth), + _wf_lw(new osg::LineWidth(2.0f)), _lightnum(0) { setOutlineColor(osg::Vec4(0, 0, 0, 1));