Fixed a couple of tooltips on the editor

This commit is contained in:
Tegu 2016-02-10 22:52:47 +02:00
parent 83b03e1c68
commit 8714e3b2e2

View file

@ -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.");