mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Small changes to some tooltips
This commit is contained in:
parent
c17f17eb98
commit
39e6beed98
@ -2989,7 +2989,7 @@ void FileSystemDock::_file_sort_popup(int p_id) {
|
||||
MenuButton *FileSystemDock::_create_file_menu_button() {
|
||||
MenuButton *button = memnew(MenuButton);
|
||||
button->set_flat(true);
|
||||
button->set_tooltip_text(TTR("Sort files"));
|
||||
button->set_tooltip_text(TTR("Sort Files"));
|
||||
|
||||
PopupMenu *p = button->get_popup();
|
||||
p->connect("id_pressed", callable_mp(this, &FileSystemDock::_file_sort_popup));
|
||||
@ -3052,14 +3052,14 @@ FileSystemDock::FileSystemDock() {
|
||||
button_hist_prev->set_flat(true);
|
||||
button_hist_prev->set_disabled(true);
|
||||
button_hist_prev->set_focus_mode(FOCUS_NONE);
|
||||
button_hist_prev->set_tooltip_text(TTR("Previous Folder/File"));
|
||||
button_hist_prev->set_tooltip_text(TTR("Go to previous selected folder/file."));
|
||||
toolbar_hbc->add_child(button_hist_prev);
|
||||
|
||||
button_hist_next = memnew(Button);
|
||||
button_hist_next->set_flat(true);
|
||||
button_hist_next->set_disabled(true);
|
||||
button_hist_next->set_focus_mode(FOCUS_NONE);
|
||||
button_hist_next->set_tooltip_text(TTR("Next Folder/File"));
|
||||
button_hist_next->set_tooltip_text(TTR("Go to next selected folder/file."));
|
||||
toolbar_hbc->add_child(button_hist_next);
|
||||
|
||||
current_path = memnew(LineEdit);
|
||||
|
@ -670,14 +670,14 @@ InspectorDock::InspectorDock(EditorData &p_editor_data) {
|
||||
backward_button = memnew(Button);
|
||||
backward_button->set_flat(true);
|
||||
general_options_hb->add_child(backward_button);
|
||||
backward_button->set_tooltip_text(TTR("Go to the previous edited object in history."));
|
||||
backward_button->set_tooltip_text(TTR("Go to previous edited object in history."));
|
||||
backward_button->set_disabled(true);
|
||||
backward_button->connect("pressed", callable_mp(this, &InspectorDock::_edit_back));
|
||||
|
||||
forward_button = memnew(Button);
|
||||
forward_button->set_flat(true);
|
||||
general_options_hb->add_child(forward_button);
|
||||
forward_button->set_tooltip_text(TTR("Go to the next edited object in history."));
|
||||
forward_button->set_tooltip_text(TTR("Go to next edited object in history."));
|
||||
forward_button->set_disabled(true);
|
||||
forward_button->connect("pressed", callable_mp(this, &InspectorDock::_edit_forward));
|
||||
|
||||
|
@ -3514,6 +3514,7 @@ SceneTreeDock::SceneTreeDock(Node *p_scene_root, EditorSelection *p_editor_selec
|
||||
|
||||
button_tree_menu = memnew(MenuButton);
|
||||
button_tree_menu->set_flat(true);
|
||||
button_tree_menu->set_tooltip_text(TTR("Extra scene options."));
|
||||
button_tree_menu->connect("about_to_popup", callable_mp(this, &SceneTreeDock::_update_tree_menu));
|
||||
filter_hbc->add_child(button_tree_menu);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user