diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-25 12:17:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 12:17:53 +0200 |
commit | 7dc7cbea0a576b65562988dee1c143dcc945d369 (patch) | |
tree | 82d6742a9f184c40b8f046ab12c7de721fb50ab4 /editor/plugins/tile_map_editor_plugin.cpp | |
parent | c26f0c9bbd52ba6bd822fd6766667de2ce189485 (diff) | |
parent | 6fb19bebbb00d05f62b3ae27b88cade1536c007d (diff) |
Merge pull request #28410 from guilhermefelipecgs/fix_typo
[Tilemap] Fix typo
Diffstat (limited to 'editor/plugins/tile_map_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/tile_map_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/tile_map_editor_plugin.cpp b/editor/plugins/tile_map_editor_plugin.cpp index 467b83f4f8..73576c9117 100644 --- a/editor/plugins/tile_map_editor_plugin.cpp +++ b/editor/plugins/tile_map_editor_plugin.cpp @@ -1934,13 +1934,13 @@ TileMapEditor::TileMapEditor(EditorNode *p_editor) { toolbar->add_child(bucket_fill_button); picker_button = memnew(ToolButton); - picker_button->set_shortcut(ED_SHORTCUT("tile_map_editor/pîck_tile", TTR("Pick Tile"), KEY_CONTROL)); + picker_button->set_shortcut(ED_SHORTCUT("tile_map_editor/pick_tile", TTR("Pick Tile"), KEY_CONTROL)); picker_button->connect("pressed", this, "_button_tool_select", make_binds(TOOL_PICKING)); picker_button->set_toggle_mode(true); toolbar->add_child(picker_button); select_button = memnew(ToolButton); - select_button->set_shortcut(ED_SHORTCUT("tile_map_editor/pîck_tile", TTR("Select"), KEY_MASK_CMD + KEY_B)); + select_button->set_shortcut(ED_SHORTCUT("tile_map_editor/select", TTR("Select"), KEY_MASK_CMD + KEY_B)); select_button->connect("pressed", this, "_button_tool_select", make_binds(TOOL_SELECTING)); select_button->set_toggle_mode(true); toolbar->add_child(select_button); |