From 6e167c0db721b29d7ff6b8641e5cdd689429ef54 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 22 Aug 2005 14:13:28 +0000 Subject: [PATCH] From Carlo Camporesi, fixed .ive handling of character height and aspect ratio. --- src/osgPlugins/ive/Text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/ive/Text.cpp b/src/osgPlugins/ive/Text.cpp index 02589768c..8e482686a 100644 --- a/src/osgPlugins/ive/Text.cpp +++ b/src/osgPlugins/ive/Text.cpp @@ -144,7 +144,7 @@ void Text::read(DataInputStream* in){ c_height = in->readFloat(); aspectRatio = in->readFloat(); - setCharacterSize(height,aspectRatio); + setCharacterSize(c_height,aspectRatio); setCharacterSizeMode((osgText::Text::CharacterSizeMode) in->readUInt());