diff options
author | SignpostMarv | 2012-08-03 12:21:57 +0100 |
---|---|---|
committer | BlueWall | 2012-08-03 16:14:01 -0400 |
commit | 5181bdae0a3c867ca26900bd3309b7ea56538147 (patch) | |
tree | 84139f5f0d8931a3cad1981b145140f7cd9a06d1 /OpenSim/Region | |
parent | refactor: rename SOG.RezzingObjectID to SOG.FromPartID to match FromFolderID,... (diff) | |
download | opensim-SC_OLD-5181bdae0a3c867ca26900bd3309b7ea56538147.zip opensim-SC_OLD-5181bdae0a3c867ca26900bd3309b7ea56538147.tar.gz opensim-SC_OLD-5181bdae0a3c867ca26900bd3309b7ea56538147.tar.bz2 opensim-SC_OLD-5181bdae0a3c867ca26900bd3309b7ea56538147.tar.xz |
attempting to fix a build issue
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs index d039111..6b9f537 100644 --- a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs | |||
@@ -596,9 +596,9 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender | |||
596 | } | 596 | } |
597 | break; | 597 | break; |
598 | case "R": | 598 | case "R": |
599 | Font newFont = new Font(myFont, FontStyle.Regular); | 599 | // Font newFont = new Font(myFont, FontStyle.Regular); |
600 | myFont.Dispose(); | 600 | myFont.Dispose(); |
601 | myFont = newFont; | 601 | myFont = new Font(myFont, FontStyle.Regular); |
602 | break; | 602 | break; |
603 | } | 603 | } |
604 | } | 604 | } |