Merge pull request #73512 from groud/fix_tilemap_dragging_selection

Fix TileMap dragging selection
This commit is contained in:
Yuri Sizov 2023-02-17 23:41:56 +03:00 committed by GitHub
commit 0c27edf3d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8116,6 +8116,7 @@ void EditorPluginList::forward_3d_force_draw_over_viewport(Control *p_overlay) {
} }
void EditorPluginList::add_plugin(EditorPlugin *p_plugin) { void EditorPluginList::add_plugin(EditorPlugin *p_plugin) {
ERR_FAIL_COND(plugins_list.has(p_plugin));
plugins_list.push_back(p_plugin); plugins_list.push_back(p_plugin);
} }