Same here… 5.5 has been released with some quite low quality standards. It’s frustrating, because if Epic themselves just release final engine versions with log warnings, it teaches average users bad habit that warnings are something common that should be ignored.
To track down the ‘Common/Selector.png’ error. I put a break point in the code and saw that it was coming from DocumentationStyleSet.cpp. More precisely this line of code:
Set(“ToolTip.TopSeparator”, new BORDER_BRUSH(“Common/Selector”, FMargin(0.0f, 1.0f, 0.0f, 0.0f), FStyleColors::Hover));
For the BORDER_BRUSH macro to work properly, the code needs to call this:
SetContentRoot(FPaths::EngineContentDir() / TEXT(“Editor/Slate”));
If you have access to the code you can add this:
SetContentRoot(FPaths::EngineContentDir() / TEXT(“Editor/Slate”));
at the start of this constructor:
FDocumentationStyleSet::FDocumentationStyleSet()