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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'archipack/archipack_roof.py')
-rw-r--r--archipack/archipack_roof.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archipack/archipack_roof.py b/archipack/archipack_roof.py
index 477a3ce6..4e8b9471 100644
--- a/archipack/archipack_roof.py
+++ b/archipack/archipack_roof.py
@@ -5049,7 +5049,7 @@ class ARCHIPACK_OT_roof(ArchipackCreateTool, Operator):
if context.mode == "OBJECT":
bpy.ops.object.select_all(action="DESELECT")
o = self.create(context)
- o.location = context.scene.cursor_location
+ o.location = context.scene.cursor.location
o.select_set(state=True)
context.view_layer.objects.active = o
self.manipulate()
@@ -5101,7 +5101,7 @@ class ARCHIPACK_OT_roof_cutter(ArchipackCreateTool, Operator):
pd = archipack_roof.datablock(parent)
pd.boundary = o.name
else:
- o.location = context.scene.cursor_location
+ o.location = context.scene.cursor.location
# make manipulators selectable
d.manipulable_selectable = True
self.link_object_to_scene(context, o)