summaryrefslogtreecommitdiffstats
path: root/editor/plugins/animation_state_machine_editor.cpp
diff options
context:
space:
mode:
authorMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2018-12-16 23:18:04 -0200
committerMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2018-12-16 23:18:04 -0200
commit9d4a996a08e5bab69b7cb405cf7a8590e50b0fe5 (patch)
tree3399014c96d930b5f6e8d29e63bf2f2cc7bcbc28 /editor/plugins/animation_state_machine_editor.cpp
parent20379119c3946096bfb0b45668034fcfa7048692 (diff)
downloadredot-engine-9d4a996a08e5bab69b7cb405cf7a8590e50b0fe5.tar.gz
Fix titles in graph editors being invisible when headers are enabled
Diffstat (limited to 'editor/plugins/animation_state_machine_editor.cpp')
-rw-r--r--editor/plugins/animation_state_machine_editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/animation_state_machine_editor.cpp b/editor/plugins/animation_state_machine_editor.cpp
index 17117e635f..df7ac0b587 100644
--- a/editor/plugins/animation_state_machine_editor.cpp
+++ b/editor/plugins/animation_state_machine_editor.cpp
@@ -118,7 +118,7 @@ void AnimationNodeStateMachineEditor::_state_machine_gui_input(const Ref<InputEv
menu->add_item(TTR("Paste"), MENU_PASTE);
}
menu->add_separator();
- menu->add_item(TTR("Load.."), MENU_LOAD_FILE);
+ menu->add_item(TTR("Load..."), MENU_LOAD_FILE);
menu->set_global_position(state_machine_draw->get_global_transform().xform(mb->get_position()));
menu->popup();
@@ -1267,7 +1267,7 @@ AnimationNodeStateMachineEditor::AnimationNodeStateMachineEditor() {
top_hb->add_child(tool_erase_hb);
tool_erase_hb->add_child(memnew(VSeparator));
tool_erase = memnew(ToolButton);
- tool_erase->set_tooltip(TTR("Remove selected node or transition"));
+ tool_erase->set_tooltip(TTR("Remove selected node or transition."));
tool_erase_hb->add_child(tool_erase);
tool_erase->connect("pressed", this, "_erase_selected");
tool_erase->set_disabled(true);