Skip to content

Commit

Permalink
Fix T46568: UV select-linked failure to de-select
Browse files Browse the repository at this point in the history
Shift-L was de-selecting all instead of the linked UV's.
  • Loading branch information
ideasman42 committed Aug 1, 2020
1 parent 71683be commit 732434c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/blender/editors/uvedit/uvedit_select.c
Original file line number Diff line number Diff line change
Expand Up @@ -2300,7 +2300,7 @@ static int uv_select_linked_internal(bContext *C, wmOperator *op, const wmEvent
}
}

if (!extend) {
if (!extend && !deselect) {
uv_select_all_perform_multi(scene, objects, objects_len, SEL_DESELECT);
}

Expand Down

0 comments on commit 732434c

Please sign in to comment.