better bvh debugging

This commit is contained in:
LarsBrubaker 2022-07-23 10:16:23 -07:00
parent 4c226457ea
commit 19d46d6afd
3 changed files with 9 additions and 6 deletions

View file

@ -164,11 +164,8 @@ namespace MatterHackers.MatterControl
var themeConfig = JsonConvert.DeserializeObject<ThemeConfig>(json);
themeConfig.EnsureDefaults();
if (ThemeSet?.Theme != null)
{
ThemeConfigExtensions.RebuildTheme(ThemeSet.Theme);
}
ThemeConfigExtensions.RebuildTheme(themeConfig);
return themeConfig;
}
}

@ -1 +1 @@
Subproject commit fca955fe34e0ee63a8d74f10de47b183810fd1c0
Subproject commit 5abd29704a4358afab0366bbe21c42066b9cd15d

View file

@ -751,6 +751,12 @@ namespace MatterHackers.MatterControl.Tests.Automation
if (!testRunner.NameExists(libraryRowItemName, .2))
{
while (!testRunner.NameExists("Bread Crumb Button Home", .2))
{
testRunner.ClickByName("Library Up Button")
.Delay();
}
// go back to the home section
testRunner.ClickByName("Bread Crumb Button Home")
.Delay();