[OpenMetaverse.GUI]
* Implemented LoginPanel component in Dashboard example * Fixed and added more sanity checking on window handles * Fixed gender detection showing some women as men git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2569 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -118,11 +118,11 @@ namespace OpenMetaverse.GUI
|
||||
|
||||
private void UpdateMiniMap(Simulator sim)
|
||||
{
|
||||
if (!this.IsHandleCreated) return;
|
||||
|
||||
if (this.InvokeRequired) this.BeginInvoke((MethodInvoker)delegate { UpdateMiniMap(sim); });
|
||||
else
|
||||
{
|
||||
if (!this.IsHandleCreated) return;
|
||||
|
||||
Bitmap bmp = _MapLayer == null ? new Bitmap(256, 256) : (Bitmap)_MapLayer.Clone();
|
||||
Graphics g = Graphics.FromImage(bmp);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user