1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Use bullet points in the editor instead of dashes where relevant

This commit is contained in:
Hugo Locurcio
2021-07-28 19:47:11 +02:00
parent 5d4352fad4
commit 10ef55ce23
3 changed files with 4 additions and 4 deletions

View File

@@ -138,7 +138,7 @@ void AnimationNode::make_invalid(const String &p_reason) {
if (state->invalid_reasons != String()) {
state->invalid_reasons += "\n";
}
state->invalid_reasons += "- " + p_reason;
state->invalid_reasons += String::utf8(" ") + p_reason;
}
float AnimationNode::blend_input(int p_input, float p_time, bool p_seek, float p_blend, FilterAction p_filter, bool p_optimize) {