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:
authorStephen Leger <stephen@3dservices.ch>2017-08-03 16:59:40 +0300
committerStephen Leger <stephen@3dservices.ch>2017-08-14 02:16:24 +0300
commitfde9aa0a3fe223e7f2eb03010faf626bac925780 (patch)
tree3cf8c0355c6892187527844d93669d0428e1f7da /archipack/panel.py
parent6e469175870222d724be17c9f14590a07e1e7e45 (diff)
archipack: Fix issue with curved segments in walls/slab/floor
Diffstat (limited to 'archipack/panel.py')
-rw-r--r--archipack/panel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archipack/panel.py b/archipack/panel.py
index c8898fe5..4a472362 100644
--- a/archipack/panel.py
+++ b/archipack/panel.py
@@ -703,8 +703,8 @@ class Panel():
n_profil_faces = self.profil_faces
idmat = []
for i in range(n_path_faces):
- for mat in range(n_profil_faces):
- idmat.append(self.idmat[mat])
+ for f in range(n_profil_faces):
+ idmat.append(self.idmat[f])
if self.side_cap_front > -1:
idmat.append(cap_front_id)
if self.side_cap_back > -1: