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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-08-12 15:32:47 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-08-12 15:49:27 +0300
commit961d43c623fd9fe1d6aa92c3067acc55b2a86843 (patch)
treeb0d5e6859169cc239a5e66130845af826f163aa6 /release
parentf555379ce3d934935669e1cf4b3b28cc123eb067 (diff)
Fix T68539: transferring uv (Ctrl+L) does not update immediately in
object mode
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/object.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/object.py b/release/scripts/startup/bl_operators/object.py
index 8463277e28c..c42d5970ed9 100644
--- a/release/scripts/startup/bl_operators/object.py
+++ b/release/scripts/startup/bl_operators/object.py
@@ -575,6 +575,7 @@ class JoinUVs(Operator):
# finally do the copy
uv_other.data.foreach_set("uv", uv_array)
+ mesh_other.update()
if is_editmode:
bpy.ops.object.mode_set(mode='EDIT', toggle=False)