Made the pencil icon the right color.

This commit is contained in:
Lars Brubaker 2016-05-16 17:47:25 -07:00
parent db19450e7c
commit f6dd491f7c
2 changed files with 12 additions and 9 deletions

View file

@ -187,10 +187,18 @@ namespace MatterHackers.MatterControl.ActionBar
private void AutomationTest()
{
AutomationRunner testRunner = new AutomationRunner(inputType: AutomationRunner.InputType.Simulated);
//AutomationRunner testRunner = new AutomationRunner(inputType: AutomationRunner.InputType.Simulated, drawSimulatedMouse: false);
//testRunner.TimeToMoveMouse = 0;
//testRunner.UpDelaySeconds = 0;
AutomationRunner testRunner = null;
if (false)
{
testRunner = new AutomationRunner(inputType: AutomationRunner.InputType.Simulated);
}
else
{
testRunner = new AutomationRunner(inputType: AutomationRunner.InputType.Simulated, drawSimulatedMouse: false);
testRunner.TimeToMoveMouse = 0;
testRunner.UpDelaySeconds = 0;
}
if (testRunner.NameExists("SettingsAndControls"))
{
testRunner.ClickByName("SettingsAndControls", 5);