Improving component names

This commit is contained in:
Lars Brubaker 2022-03-22 15:54:19 -07:00
parent 088db8c30c
commit cd96bafee2
2 changed files with 2 additions and 2 deletions

View file

@ -479,7 +479,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
};
var row = new SettingsRow(cell.Name == null ? cellId : cell.Name, null, field.Content, theme);
var row = new SettingsRow(cell.Name == null ? cellId : cell.Name.Replace("_", " "), null, field.Content, theme);
editorPanel.AddChild(row);
}
}

View file

@ -46,7 +46,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
AutomationRunner.ShowWindowAndExecuteTests(systemWindow, testRunner =>
{
testRunner.Delay(100);
testRunner.Delay(1);
return Task.CompletedTask;
},