From d7931e302438a28e87980bc8f0e7c76bdb5d915e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 28 May 2013 09:20:48 +0000 Subject: [PATCH] Fixed View::setUpViewInWindow() parameter --- src/osgViewer/View.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgViewer/View.cpp b/src/osgViewer/View.cpp index 0a030057c..998302d0a 100644 --- a/src/osgViewer/View.cpp +++ b/src/osgViewer/View.cpp @@ -465,7 +465,7 @@ void View::setUpViewAcrossAllScreens() void View::setUpViewInWindow(int x, int y, int width, int height, unsigned int screenNum) { - apply(new osgViewer::SingleWindow(x,y,width,screenNum)); + apply(new osgViewer::SingleWindow(x, y, width, height, screenNum)); } void View::setUpViewOnSingleScreen(unsigned int screenNum)