Restore Clear Cache functionality

- Remove buttonRowContainer blocking mouse input to html content
 - Fixes #104208890 - Help>About>Clear Cache no longer works
This commit is contained in:
John Lewin 2016-01-10 17:29:23 -08:00
parent a310e16864
commit 366ea3bca3
2 changed files with 5 additions and 10 deletions

View file

@ -244,11 +244,11 @@ namespace MatterHackers.MatterControl
{
if (elementState.Id == "sendFeedback")
{
createdButton.Click += (sender, mouseEvent) => { ContactFormWindow.Open(); };
createdButton.Click += (s, e) => ContactFormWindow.Open();
}
else if (elementState.Id == "clearCache")
{
createdButton.Click += (sender, mouseEvent) => { AboutWidget.DeleteCacheData(); };
createdButton.Click += (s, e) => AboutWidget.DeleteCacheData();
}
}