diff --git a/source/blender/draw/intern/draw_context.cc b/source/blender/draw/intern/draw_context.cc index 03e37aadfa8..e7fc2794b09 100644 --- a/source/blender/draw/intern/draw_context.cc +++ b/source/blender/draw/intern/draw_context.cc @@ -771,9 +771,13 @@ static void foreach_obref_in_scene(DRWContext &draw_ctx, eEvaluationMode eval_mode = DEG_get_mode(depsgraph); View3D *v3d = draw_ctx.v3d; +#if 0 /* Temporary disabled until we can fix all the issues that it causes. */ /* EEVEE is not supported for now. */ const bool engines_support_handle_ranges = (v3d && v3d->shading.type <= OB_SOLID) || BKE_scene_uses_blender_workbench(draw_ctx.scene); +#else + const bool engines_support_handle_ranges = false; +#endif DEGObjectIterSettings deg_iter_settings = {nullptr}; deg_iter_settings.depsgraph = depsgraph;