mirror of
https://github.com/blender/blender
synced 2026-09-26 16:15:47 +03:00
Fix #117320: UV Sync-select selects faces instead of just edges
This commit is contained in:
parent
9b4683fe0a
commit
9edb2784da
1 changed files with 8 additions and 1 deletions
|
|
@ -195,7 +195,14 @@ void ED_uvedit_select_sync_flush(const ToolSettings *ts, BMEditMesh *em, const b
|
|||
EDBM_deselect_flush(em);
|
||||
}
|
||||
else {
|
||||
EDBM_select_flush(em);
|
||||
if (ts->selectmode & SCE_SELECT_VERTEX) {
|
||||
EDBM_select_flush(em);
|
||||
}
|
||||
else {
|
||||
/* Use instead of #EDBM_select_flush so selecting edges doesn't
|
||||
* flush vertex to face selection, see: #117320. */
|
||||
EDBM_selectmode_flush(em);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue