From 9201cf8d00c2792edee1c5b1946a2e570d993789 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 4 Sep 2013 17:27:26 +0000 Subject: [PATCH] Moved the property test from the model to presentation to test out the property inheritance scheme --- examples/osgpresentation/osgpresentation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/osgpresentation/osgpresentation.cpp b/examples/osgpresentation/osgpresentation.cpp index ef4c2f29c..9cf4bbc29 100644 --- a/examples/osgpresentation/osgpresentation.cpp +++ b/examples/osgpresentation/osgpresentation.cpp @@ -126,7 +126,7 @@ int main(int argc, char** argv) text->setProperty("width",std::string("103.2")); model->setProperty("filename", std::string("dumptruck.osgt")); - model->setProperty("scale",2.0); + presentation->setProperty("scale",2.0); osgPresentation::PrintSupportedProperties psp(std::cout);