aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_help.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-07-09 18:15:02 +0200
committerGitHub2016-07-09 18:15:02 +0200
commit48bdaaa5601e82f242af240fd9eb1b4a7acb79b7 (patch)
treebba0c57e7c4862880c0dff67b8acdc339da54470 /tools/editor/editor_help.cpp
parent920310e72af9f9e36c007fdfe19ae03ce3f0c670 (diff)
parentaf395cea42913f8f9d12912d7eee9011dd557ec7 (diff)
downloadgodot-48bdaaa5601e82f242af240fd9eb1b4a7acb79b7.tar.gz
godot-48bdaaa5601e82f242af240fd9eb1b4a7acb79b7.tar.zst
godot-48bdaaa5601e82f242af240fd9eb1b4a7acb79b7.zip
Merge pull request #5609 from eska014/help-search-titles
Fix help search dialog titles
Diffstat (limited to 'tools/editor/editor_help.cpp')
-rw-r--r--tools/editor/editor_help.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/editor/editor_help.cpp b/tools/editor/editor_help.cpp
index 0b60db5ee..1fc157098 100644
--- a/tools/editor/editor_help.cpp
+++ b/tools/editor/editor_help.cpp
@@ -332,7 +332,7 @@ EditorHelpSearch::EditorHelpSearch() {
register_text_enter(search_box);
set_hide_on_ok(false);
search_options->connect("item_activated",this,"_confirmed");
- set_title(TTR("Search Classes"));
+ set_title(TTR("Search Help"));
// search_options->set_hide_root(true);
@@ -526,6 +526,7 @@ EditorHelpIndex::EditorHelpIndex() {
class_list->connect("item_activated",this,"_tree_item_selected");
get_ok()->set_text(TTR("Open"));
+ set_title(TTR("Search Classes"));
}