Commit: 2e4d580f9d35f44227bf3d72bb2c2e9170de65de
Author: Campbell Barton
Date:   Tue Oct 13 09:00:03 2015 +1100
Branches: blender-v2.76a-release
https://developer.blender.org/rB2e4d580f9d35f44227bf3d72bb2c2e9170de65de

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

===================================================================

M       source/blender/editors/uvedit/uvedit_ops.c

===================================================================

diff --git a/source/blender/editors/uvedit/uvedit_ops.c 
b/source/blender/editors/uvedit/uvedit_ops.c
index 71d557f..728e366 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -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);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to