Experimenting with new boolean 3d library.

This commit is contained in:
larsbrubaker 2016-03-05 15:54:38 -08:00
parent d2de95aa7a
commit ea196408d2
3 changed files with 11 additions and 6 deletions

View file

@ -917,11 +917,11 @@ namespace MatterHackers.MatterControl.Plugins.TextCreator
catch (System.UnauthorizedAccessException)
{
//Do something special when unauthorized?
StyledMessageBox.ShowMessageBox(null, "Oops! Unable to save changes.".Localize(), "Unable to save".Localize());
UiThread.RunOnIdle(() => StyledMessageBox.ShowMessageBox(null, "Oops! Unable to save changes.".Localize(), "Unable to save".Localize()));
}
catch
{
StyledMessageBox.ShowMessageBox(null, "Oops! Unable to save changes.".Localize(), "Unable to save".Localize());
UiThread.RunOnIdle(() => StyledMessageBox.ShowMessageBox(null, "Oops! Unable to save changes.".Localize(), "Unable to save".Localize()));
}
}