[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:
@@ -54,14 +54,14 @@ namespace OpenMetaverse.GUI
|
||||
|
||||
public void LogText(string text, Color color)
|
||||
{
|
||||
if (!this.IsHandleCreated) return;
|
||||
|
||||
if (this.InvokeRequired)
|
||||
{
|
||||
this.BeginInvoke((MethodInvoker)delegate { LogText(text, color); });
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!this.IsHandleCreated) return;
|
||||
|
||||
this.SelectionStart = this.Text.Length;
|
||||
this.SelectionColor = color;
|
||||
DateTime now = DateTime.Now;
|
||||
|
||||
Reference in New Issue
Block a user