attempting to fix a build issue

Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
integration
SignpostMarv 2012-08-03 12:21:57 +01:00 committed by BlueWall
parent d5e2d2949f
commit b951124d02
1 changed files with 2 additions and 2 deletions

View File

@ -596,9 +596,9 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender
} }
break; break;
case "R": case "R":
Font newFont = new Font(myFont, FontStyle.Regular); // Font newFont = new Font(myFont, FontStyle.Regular);
myFont.Dispose(); myFont.Dispose();
myFont = newFont; myFont = new Font(myFont, FontStyle.Regular);
break; break;
} }
} }