Fixed 69 occurance of 'Seperate' misspelling (should be 'Separate')
This commit is contained in:
@@ -864,14 +864,14 @@ void Viewer::keyboard(unsigned char key, int x, int y)
|
||||
case '>' :
|
||||
{
|
||||
osg::DisplaySettings* ds = const_cast<osg::DisplaySettings*>(sceneView->getDisplaySettings());
|
||||
if (ds) ds->setEyeSeperation(ds->getEyeSeperation()*1.5f);
|
||||
if (ds) ds->setEyeSeparation(ds->getEyeSeparation()*1.5f);
|
||||
}
|
||||
break;
|
||||
|
||||
case '<' :
|
||||
{
|
||||
osg::DisplaySettings* ds = const_cast<osg::DisplaySettings*>(sceneView->getDisplaySettings());
|
||||
if (ds) ds->setEyeSeperation(ds->getEyeSeperation()/1.5f);
|
||||
if (ds) ds->setEyeSeparation(ds->getEyeSeparation()/1.5f);
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user