Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-01-21 05:27:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-21 05:27:38 +0400
commita0f25f23010207725afaa92f6b744eaa529484c1 (patch)
tree9009a519ee0c115644ee6c05cd62bb41feea2e48 /source/blender/editors/space_node/drawnode.c
parent37242e6b0b1897b3d265a25684eacccfec36ffd0 (diff)
Fix own mistake with zealous check for face splitting
Was disallowing adjacent loops to be split which is correct for a single split across a face, but not fore BM_face_split_n
Diffstat (limited to 'source/blender/editors/space_node/drawnode.c')
-rw-r--r--source/blender/editors/space_node/drawnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c
index e8547b7c164..5f133aea2bb 100644
--- a/source/blender/editors/space_node/drawnode.c
+++ b/source/blender/editors/space_node/drawnode.c
@@ -659,7 +659,7 @@ static void node_buts_image_user(uiLayout *layout, bContext *C, PointerRNA *ptr,
/* don't use iuser->framenr directly because it may not be updated if auto-refresh is off */
Scene *scene = CTX_data_scene(C);
ImageUser *iuser = iuserptr->data;
- Image *ima = imaptr->data;
+ /* Image *ima = imaptr->data; */ /* UNUSED */
char numstr[32];
const int framenr = BKE_image_user_frame_get(iuser, CFRA, 0, NULL);