Browse Source

Merge pull request #3657 from Tegu/master

Fixed a couple of tooltips on the editor
Rémi Verschelde 9 years ago
parent
commit
d0748b0f46
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tools/editor/plugins/script_editor_plugin.cpp

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