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:
authorDalai Felinto <dfelinto@gmail.com>2018-10-09 15:45:00 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-10-09 15:45:00 +0300
commit18be4d942b3e544d9d608b78362c8aaf10055b61 (patch)
tree676ebc0606dad1d011f3dcc74067ae03db920694 /source/blender/editors/space_view3d/view3d_gizmo_empty.c
parent9a670a67d25f54f2f70f1056cfa8823f6817fd22 (diff)
Fix build error on windows/MSVC
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_gizmo_empty.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_gizmo_empty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_gizmo_empty.c b/source/blender/editors/space_view3d/view3d_gizmo_empty.c
index 8bbc9c8f553..fe1129f8028 100644
--- a/source/blender/editors/space_view3d/view3d_gizmo_empty.c
+++ b/source/blender/editors/space_view3d/view3d_gizmo_empty.c
@@ -96,7 +96,7 @@ static void gizmo_empty_image_prop_matrix_set(
Object *ob = igzgroup->state.ob;
ob->empty_drawsize = matrix[0][0];
- DEG_id_tag_update(ob, DEG_TAG_TRANSFORM);
+ DEG_id_tag_update(&ob->id, DEG_TAG_TRANSFORM);
float dims[2];
RNA_float_get_array(gz->ptr, "dimensions", dims);