Fix T46568: UV select-linked failure to de-select

Shift-L was de-selecting all instead of the linked UV's.
This commit is contained in:
Campbell Barton 2020-08-12 09:10:07 +02:00 committed by Jeroen Bakker
parent ee43580623
commit 1d816e3a66
Notes: blender-bot 2023-02-14 08:30:02 +01:00
Referenced by issue #77348, Blender LTS: Maintenance Task 2.83
Referenced by issue #46568, Deselect Linked Seam fails ( Deselects all instead )
1 changed files with 1 additions and 1 deletions

View File

@ -2951,7 +2951,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);
}