Skip to content

Commit

Permalink
EditorNode: Improve tooltip for pause button
Browse files Browse the repository at this point in the history
Closes #14742.
  • Loading branch information
akien-mga committed Nov 14, 2019
1 parent a1c396e commit 4163419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6230,7 +6230,7 @@ EditorNode::EditorNode() {
pause_button->set_toggle_mode(true);
pause_button->set_icon(gui_base->get_icon("Pause", "EditorIcons"));
pause_button->set_focus_mode(Control::FOCUS_NONE);
pause_button->set_tooltip(TTR("Pause the scene"));
pause_button->set_tooltip(TTR("Pause the scene execution for debugging."));
pause_button->set_disabled(true);
play_hb->add_child(pause_button);
#ifdef OSX_ENABLED
Expand Down

0 comments on commit 4163419

Please sign in to comment.