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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-12-07 15:52:14 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-12-07 15:54:59 +0300
commit012a44cff11ffb12a65409ba68b4e66caded28a7 (patch)
tree4e4170772f3cfee7c7001bb64f1707b7b39affdf /source/blender/editors/include
parentcc61b21dff5e58031a165faf9f7c26a9e6032316 (diff)
Fix T57640: UV unwrap packing not working without sync selection.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_uvedit.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_uvedit.h b/source/blender/editors/include/ED_uvedit.h
index f7d647bd89c..2fc15f72fca 100644
--- a/source/blender/editors/include/ED_uvedit.h
+++ b/source/blender/editors/include/ED_uvedit.h
@@ -127,10 +127,11 @@ void ED_uvedit_live_unwrap_end(short cancel);
void ED_uvedit_live_unwrap(struct Scene *scene, struct Object *obedit);
void ED_uvedit_pack_islands(
- struct Scene *scene, struct Object *ob, struct BMesh *bm, bool selected, bool correct_aspect, bool do_rotate);
+ struct Scene *scene, struct Object *ob, struct BMesh *bm,
+ bool selected, bool correct_aspect, bool do_rotate);
void ED_uvedit_pack_islands_multi(
struct Scene *scene, struct Object **objects, const uint objects_len,
- bool selected, bool correct_aspect, bool do_rotate);
+ bool selected, bool correct_aspect, bool do_rotate, bool implicit);
void ED_uvedit_unwrap_cube_project(
struct BMesh *bm, float cube_size, bool use_select, const float center[3]);