Skip to content

Commit

Permalink
Merge branch 'blender-v2.90-release' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ideasman42 committed Aug 4, 2020
2 parents 0dff6b2 + 164f40c commit ca606bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions source/blender/draw/intern/draw_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1960,7 +1960,7 @@ void DRW_render_instance_buffer_finish(void)
void DRW_draw_select_loop(struct Depsgraph *depsgraph,
ARegion *region,
View3D *v3d,
bool UNUSED(use_obedit_skip),
bool use_obedit_skip,
bool draw_surface,
bool UNUSED(use_nearest),
const rcti *rect,
Expand All @@ -1973,7 +1973,7 @@ void DRW_draw_select_loop(struct Depsgraph *depsgraph,
RenderEngineType *engine_type = ED_view3d_engine_type(scene, v3d->shading.type);
ViewLayer *view_layer = DEG_get_evaluated_view_layer(depsgraph);
Object *obact = OBACT(view_layer);
Object *obedit = OBEDIT_FROM_OBACT(obact);
Object *obedit = use_obedit_skip ? NULL : OBEDIT_FROM_OBACT(obact);
#ifndef USE_GPU_SELECT
UNUSED_VARS(scene, view_layer, v3d, region, rect);
#else
Expand Down
2 changes: 1 addition & 1 deletion source/blender/editors/space_view3d/view3d_select.c
Original file line number Diff line number Diff line change
Expand Up @@ -2112,7 +2112,7 @@ static bool ed_object_select_pick(bContext *C,

if (hits > 0) {
/* note: bundles are handling in the same way as bones */
const bool has_bones = selectbuffer_has_bones(buffer, hits);
const bool has_bones = object ? false : selectbuffer_has_bones(buffer, hits);

/* note; shift+alt goes to group-flush-selecting */
if (enumerate) {
Expand Down

0 comments on commit ca606bf

Please sign in to comment.