Improving component names
This commit is contained in:
parent
088db8c30c
commit
cd96bafee2
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
|
|||
|
||||
AutomationRunner.ShowWindowAndExecuteTests(systemWindow, testRunner =>
|
||||
{
|
||||
testRunner.Delay(100);
|
||||
testRunner.Delay(1);
|
||||
|
||||
return Task.CompletedTask;
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue