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:
authorThomas Dinges <blender@dingto.org>2011-08-27 17:38:53 +0400
committerThomas Dinges <blender@dingto.org>2011-08-27 17:38:53 +0400
commitf4768033d876ed23567a71a2897c19c46753f788 (patch)
treed17f64037cd6035e20880585db5528cb185490b9 /mesh_inset
parentd744270e737d5ecb192897e94549fde45405c469 (diff)
Addon UI Cleanup, Part 2
* You only have to do layout.prop if you want 1 property, no need for row then! * Use col, row, sub as variable names, not colsub, rowsub, row2 etc please. * Povray Addon: Still used a lot of splits, you need no split when you only have 1 column!
Diffstat (limited to 'mesh_inset')
-rw-r--r--mesh_inset/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py
index 95a03830..d589cabd 100644
--- a/mesh_inset/__init__.py
+++ b/mesh_inset/__init__.py
@@ -90,7 +90,7 @@ class Inset(bpy.types.Operator):
def draw(self, context):
layout = self.layout
box = layout.box()
- box.label("Inset Options")
+ box.label("Inset Options:")
box.prop(self, "scale")
box.prop(self, "inset_amount")
box.prop(self, "inset_height")