diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2020-12-28 14:53:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-28 14:53:43 +0100 |
commit | feb4e5ed2cb463e0a2dde12d38681b346f7e0b3c (patch) | |
tree | ae0a1fec73157cece6aa857d5bf0a950acc795f5 /modules/gridmap | |
parent | e4c05723858dc6e644ebec4ea89fb6b562052fbd (diff) | |
parent | 7b293eddfb618699c86b421bdac9fdaf8d5f00d3 (diff) |
Merge pull request #44569 from madmiraal/rename-unselect-deselect
Rename unselect to deselect
Diffstat (limited to 'modules/gridmap')
-rw-r--r-- | modules/gridmap/grid_map_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gridmap/grid_map_editor_plugin.cpp b/modules/gridmap/grid_map_editor_plugin.cpp index d4fbecd60f..55cc0bfb9d 100644 --- a/modules/gridmap/grid_map_editor_plugin.cpp +++ b/modules/gridmap/grid_map_editor_plugin.cpp @@ -724,7 +724,7 @@ bool GridMapEditor::forward_spatial_input_event(Camera3D *p_camera, const Ref<In return true; } else { selected_palette = -1; - mesh_library_palette->unselect_all(); + mesh_library_palette->deselect_all(); update_palette(); _update_cursor_instance(); return true; |