mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-25 13:58:55 -05:00
Fix up text formatting as path's no longer get quoted
This commit is contained in:
@@ -405,7 +405,7 @@ void RenderableFieldlines::loadSeedPointsFromTable() {
|
||||
std::vector<RenderableFieldlines::Line> RenderableFieldlines::generateFieldlines() {
|
||||
if (!_vectorFieldInfo.hasValue<std::string>(KeyVectorFieldType)) {
|
||||
LERROR(fmt::format(
|
||||
"{} does not contain a '{}' key", KeyVectorField, KeyVectorFieldType
|
||||
"'{}' does not contain a '{}' key", KeyVectorField, KeyVectorFieldType
|
||||
));
|
||||
return {};
|
||||
}
|
||||
@@ -426,14 +426,14 @@ std::vector<RenderableFieldlines::Line>
|
||||
RenderableFieldlines::generateFieldlinesVolumeKameleon()
|
||||
{
|
||||
if (!_vectorFieldInfo.hasValue<std::string>(KeyVectorFieldVolumeModel)) {
|
||||
LERROR(fmt::format("{} does not name a model", KeyVectorField));
|
||||
LERROR(fmt::format("'{}' does not name a model", KeyVectorField));
|
||||
return {};
|
||||
}
|
||||
|
||||
std::string model = _vectorFieldInfo.value<std::string>(KeyVectorFieldVolumeModel);
|
||||
|
||||
if (!_vectorFieldInfo.hasValue<std::string>(KeyVectorFieldFile)) {
|
||||
LERROR(fmt::format("{} does not name a file", KeyVectorField));
|
||||
LERROR(fmt::format("'{}' does not name a file", KeyVectorField));
|
||||
return {};
|
||||
}
|
||||
std::string fileName = _vectorFieldInfo.value<std::string>(KeyVectorFieldFile);
|
||||
|
||||
Reference in New Issue
Block a user