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:
authorAntonioya <blendergit@gmail.com>2016-09-23 16:15:16 +0300
committerAntonioya <blendergit@gmail.com>2016-09-23 16:15:16 +0300
commit434fa71f2dc73cd48972b465f6ca0cec7c5fa2b7 (patch)
tree89e4abaff99c993a779dc8474044cfb72d5beb2f /archimesh
parent80cfaeca0954b51d950a5cb27312768a7a99af50 (diff)
Fix T49432: Archimesh crashes blender when room height info changed
Vertex data was not available when reading the for creating floor or ceiling.
Diffstat (limited to 'archimesh')
-rw-r--r--archimesh/achm_room_maker.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archimesh/achm_room_maker.py b/archimesh/achm_room_maker.py
index 2b094739..ee0d3275 100644
--- a/archimesh/achm_room_maker.py
+++ b/archimesh/achm_room_maker.py
@@ -465,6 +465,7 @@ def shape_walls_and_create_children(myroom, tmp_mesh, update=False):
myshell = None
# Create the walls (only mesh, because the object is 'myRoom', created before).
create_walls(rp, tmp_mesh, get_blendunits(rp.room_height))
+ myroom.data = tmp_mesh
# Mark Seams
select_vertices(myroom, [0, 1])
mark_seam(myroom)