diff options
author | Tegu <tehtegu@gmail.com> | 2016-02-10 22:52:47 +0200 |
---|---|---|
committer | Tegu <tehtegu@gmail.com> | 2016-02-10 22:56:24 +0200 |
commit | 8714e3b2e2986e7be62b33a81b88b3e0e94d78de (patch) | |
tree | 6b542a8869dda5484641806a5a574a2529fe0208 | |
parent | 83b03e1c6860e1df685ff956d48429c9845ea605 (diff) |
Fixed a couple of tooltips on the editor
-rw-r--r-- | tools/editor/plugins/script_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index bef74ebcfe..18f3787cff 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -2486,13 +2486,13 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) { script_back->connect("pressed",this,"_history_back"); menu_hb->add_child(script_back); script_back->set_disabled(true); - help_search->set_tooltip("Go to previous edited document."); + script_back->set_tooltip("Go to previous edited document."); script_forward = memnew( ToolButton ); script_forward->connect("pressed",this,"_history_forward"); menu_hb->add_child(script_forward); script_forward->set_disabled(true); - help_search->set_tooltip("Go to next edited document."); + script_forward->set_tooltip("Go to next edited document."); |