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:
parent
a310e16864
commit
366ea3bca3
2 changed files with 5 additions and 10 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue