Another function that needs to wait for the uithread to get called.

This commit is contained in:
larsbrubaker 2014-02-10 17:09:20 -08:00
parent e6e16c3612
commit 1c02779410

View file

@ -373,6 +373,11 @@ namespace MatterHackers.MatterControl
}
void DoneButton_Click(object sender, MouseEventArgs mouseEvent)
{
UiThread.RunOnIdle(DoDoneButton_Click);
}
void DoDoneButton_Click(object state)
{
Close();
}