From d0459333af1b5935013dd3b27121ef61c2360365 Mon Sep 17 00:00:00 2001 From: Antonioya Date: Fri, 23 Sep 2016 15:15:16 +0200 Subject: Fix T49432: Archimesh crashes blender when room height info changed Vertex data was not available when reading the for creating floor or ceiling. --- archimesh/achm_room_maker.py | 1 + 1 file changed, 1 insertion(+) 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) -- cgit v1.2.3