Fix missing newline in some cases.

This commit is contained in:
Rene Gollent 2012-12-18 17:36:02 -05:00
parent b7b5d7636b
commit 68359a7361

View File

@ -221,7 +221,8 @@ UiUtils::PrintValueNodeGraph(BString& _output, ValueNodeChild* child,
}
_output.Append('\t', indentLevel);
_output << "}\n";
}
} else
_output << "\n";
return;
}