Fix T46450: Seams from islands, wont show 'Sharp'

This commit is contained in:
Campbell Barton
2015-10-13 09:00:03 +11:00
parent e32430df34
commit 5e75acf81d

View File

@@ -4119,7 +4119,13 @@ static int uv_seams_from_islands_exec(bContext *C, wmOperator *op)
}
}
me->drawflag |= ME_DRAWSEAMS;
if (mark_seams) {
me->drawflag |= ME_DRAWSEAMS;
}
if (mark_sharp) {
me->drawflag |= ME_DRAWSHARP;
}
BM_uv_vert_map_free(vmap);