Fixed a ghosting bug in MiniMap from previous commit
git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2346 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -94,9 +94,8 @@ namespace OpenMetaverse.GUI
|
||||
if (this.InvokeRequired) this.BeginInvoke((MethodInvoker)delegate { UpdateMiniMap(sim); });
|
||||
else
|
||||
{
|
||||
Bitmap bmp = _MapLayer == null ? new Bitmap(256, 256) : (Bitmap)_MapLayer;
|
||||
Bitmap bmp = _MapLayer == null ? new Bitmap(256, 256) : (Bitmap)_MapLayer.Clone();
|
||||
Graphics g = Graphics.FromImage(bmp);
|
||||
//SolidBrush brush = new SolidBrush(Color.FromArgb(90, 32, 32, 32));
|
||||
|
||||
if (_MapLayer == null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user