diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-06-01 13:31:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 13:31:46 +0200 |
commit | ff0d295d9e5472fe974b8e14030107ed8c4e394f (patch) | |
tree | e68efbeadfddbda03c3ef67d5432c4ea459649ea /editor/plugins | |
parent | 6c1d71edc4a41c9ad89922fc433e617a813e4658 (diff) | |
parent | 589f18a374783fd0076515aa9a264b06d1b0bb90 (diff) |
Merge pull request #19250 from YeldhamDev/scene_editor_tooltips
Minor changes to the Scene and Canvas editors' tooltips
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index ca5aa7039d..ad49ab86c9 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -4339,13 +4339,13 @@ CanvasItemEditor::CanvasItemEditor(EditorNode *p_editor) { hb->add_child(snap_button); snap_button->set_toggle_mode(true); snap_button->connect("toggled", this, "_button_toggle_snap"); - snap_button->set_tooltip(TTR("Toggles snapping")); + snap_button->set_tooltip(TTR("Toggle snapping.")); snap_button->set_shortcut(ED_SHORTCUT("canvas_item_editor/use_snap", TTR("Use Snap"), KEY_S)); snap_config_menu = memnew(MenuButton); hb->add_child(snap_config_menu); snap_config_menu->set_h_size_flags(SIZE_SHRINK_END); - snap_config_menu->set_tooltip(TTR("Snapping options")); + snap_config_menu->set_tooltip(TTR("Snapping Options")); PopupMenu *p = snap_config_menu->get_popup(); p->connect("id_pressed", this, "_popup_callback"); |