Fix T72412: Weld Modifier: Merged edges not displayed in wireframe

This commit is contained in:
Germano Cavalcante 2019-12-13 21:47:42 -03:00
parent c6ba941339
commit 9b871683b1
Notes: blender-bot 2023-02-14 05:12:59 +01:00
Referenced by issue #72412, Weld Modifier: interferes with Wireframe overlay
1 changed files with 3 additions and 2 deletions

View File

@ -1477,7 +1477,7 @@ static void customdata_weld(
#endif
uint crease = 0;
uint bweight = 0;
char flag = 0;
short flag = 0;
/* interpolates a layer at a time */
dest_i = 0;
@ -1569,7 +1569,7 @@ static void customdata_weld(
mv_no[2] = (short)no[2];
#endif
mv->flag = flag;
mv->flag = (char)flag;
mv->bweight = (char)bweight;
}
else if (type == CD_MEDGE) {
@ -1581,6 +1581,7 @@ static void customdata_weld(
me->crease = (char)crease;
me->bweight = (char)bweight;
me->flag = flag;
}
}
}