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 'archimesh/achm_room_maker.py')
-rw-r--r--archimesh/achm_room_maker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archimesh/achm_room_maker.py b/archimesh/achm_room_maker.py
index 11a259be..1ef5219d 100644
--- a/archimesh/achm_room_maker.py
+++ b/archimesh/achm_room_maker.py
@@ -1589,7 +1589,7 @@ Object.RoomGenerator = CollectionProperty(type=RoomProperties)
# Add wall parameters to the panel.
# -----------------------------------------------------
def add_wall(idx, box, wall):
- box.label("Wall " + str(idx))
+ box.label(text="Wall " + str(idx))
row = box.row()
row.prop(wall, 'w')
row.prop(wall, 'a')
@@ -1650,7 +1650,7 @@ class AchmRoomGeneratorPanel(Panel):
layout = self.layout
if bpy.context.mode == 'EDIT_MESH':
- layout.label('Warning: Operator does not work in edit mode.', icon='ERROR')
+ layout.label(text='Warning: Operator does not work in edit mode.', icon='ERROR')
else:
room = o.RoomGenerator[0]
row = layout.row()