diff options
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Modules/VectorRenderModule.cs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Modules/VectorRenderModule.cs b/OpenSim/Region/Environment/Modules/VectorRenderModule.cs index 6b80eb1..19bcc88 100644 --- a/OpenSim/Region/Environment/Modules/VectorRenderModule.cs +++ b/OpenSim/Region/Environment/Modules/VectorRenderModule.cs | |||
@@ -229,12 +229,17 @@ namespace OpenSim.Region.Environment.Modules | |||
229 | { | 229 | { |
230 | nextLine = nextLine.Remove(0, 9); | 230 | nextLine = nextLine.Remove(0, 9); |
231 | nextLine = nextLine.Trim(); | 231 | nextLine = nextLine.Trim(); |
232 | |||
233 | // Linux Compile error if Color is compared against null | ||
234 | // Documentation for System.Drawing.Color says it returns | ||
235 | // a Color with all Components as 0 if the String passed | ||
236 | // isn't a known color | ||
232 | Color newColour = Color.FromName(nextLine); | 237 | Color newColour = Color.FromName(nextLine); |
233 | if (newColour != null) | 238 | //if (newColour != null) |
234 | { | 239 | //{ |
235 | myBrush.Color = newColour; | 240 | myBrush.Color = newColour; |
236 | drawPen.Color = newColour; | 241 | drawPen.Color = newColour; |
237 | } | 242 | //} |
238 | } | 243 | } |
239 | } | 244 | } |
240 | } | 245 | } |