Small changes to some tooltips
This commit is contained in:
parent
c17f17eb98
commit
39e6beed98
3 changed files with 6 additions and 5 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue