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@pandora.be>2011-03-12 16:15:09 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-03-12 16:15:09 +0300
commit9b2f0dadb9924b12aae753dd63ee81f88dcb7d48 (patch)
treecb61982e4593262612297d945576f2b043de2024
parent5b75593c239f9db213c07804f41a130751245cb6 (diff)
Fix uvedit unwrap tool not taking selection into account.
-rw-r--r--source/blender/editors/uvedit/uvedit_unwrap_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
index d4e6b3b98b9..368d43a674e 100644
--- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c
+++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
@@ -858,7 +858,7 @@ static int unwrap_exec(bContext *C, wmOperator *op)
else scene->toolsettings->uvcalc_flag |= UVCALC_NO_ASPECT_CORRECT;
/* execute unwrap */
- ED_unwrap_lscm(scene, obedit, FALSE);
+ ED_unwrap_lscm(scene, obedit, TRUE);
DAG_id_tag_update(obedit->data, 0);
WM_event_add_notifier(C, NC_GEOM|ND_DATA, obedit->data);