Made the auto level indicator button navigate to the auto level properties panel.

This commit is contained in:
Lars Brubaker 2016-05-17 15:30:39 -07:00
parent 483ce16453
commit 3290a91947
5 changed files with 116 additions and 1 deletions

View file

@ -246,6 +246,14 @@ namespace MatterHackers.MatterControl.ActionBar
}
testRunner.ClickByName("Slice Settings Tab", .1);
testRunner.ClickByName("Options Tab", .2);
SystemWindow containingWindow;
var autoLevelRowItem = testRunner.GetWidgetByName("AutoLevelRowItem", out containingWindow, .2);
if (autoLevelRowItem != null)
{
new AttentionGetter(autoLevelRowItem);
}
testRunner.Dispose();
}