1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +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

@@ -602,7 +602,7 @@ void ScriptCreateDialog::_path_entered(const String &p_path) {
}
void ScriptCreateDialog::_msg_script_valid(bool valid, const String &p_msg) {
error_label->set_text("- " + TTR(p_msg));
error_label->set_text(String::utf8(" ") + TTR(p_msg));
if (valid) {
error_label->add_color_override("font_color", get_color("success_color", "Editor"));
} else {
@@ -611,7 +611,7 @@ void ScriptCreateDialog::_msg_script_valid(bool valid, const String &p_msg) {
}
void ScriptCreateDialog::_msg_path_valid(bool valid, const String &p_msg) {
path_error_label->set_text("- " + TTR(p_msg));
path_error_label->set_text(String::utf8(" ") + TTR(p_msg));
if (valid) {
path_error_label->add_color_override("font_color", get_color("success_color", "Editor"));
} else {