diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-02-10 22:38:27 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-02-10 22:38:27 +0100 |
commit | d0748b0f4688cb50d2bde15e96091c82986aa499 (patch) | |
tree | 6b542a8869dda5484641806a5a574a2529fe0208 | |
parent | 83b03e1c6860e1df685ff956d48429c9845ea605 (diff) | |
parent | 8714e3b2e2986e7be62b33a81b88b3e0e94d78de (diff) |
Merge pull request #3657 from Tegu/master
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."); |