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:
authorCampbell Barton <ideasman42@gmail.com>2011-07-11 02:57:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-07-11 02:57:27 +0400
commit488e1da935d55330be55eb30b4605b993dd65dbd (patch)
treed4437d5e74e962482a4a6aa5336212c257f0245e /light_field_tools
parent8012053e1e178c8cabb133e05dc1e36d52908fa7 (diff)
cleanup
- remove/comment unused variables - remove unused imports - fixed some bugs using incorrect variables
Diffstat (limited to 'light_field_tools')
-rw-r--r--light_field_tools/__init__.py1
-rw-r--r--light_field_tools/light_field_tools.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/light_field_tools/__init__.py b/light_field_tools/__init__.py
index 862c399b..1ca55a59 100644
--- a/light_field_tools/__init__.py
+++ b/light_field_tools/__init__.py
@@ -116,4 +116,3 @@ def unregister():
if __name__ == "__main__":
register()
-
diff --git a/light_field_tools/light_field_tools.py b/light_field_tools/light_field_tools.py
index dcf44c95..3c2636e7 100644
--- a/light_field_tools/light_field_tools.py
+++ b/light_field_tools/light_field_tools.py
@@ -403,7 +403,7 @@ class VIEW3D_OT_lightfield_tools(bpy.types.Panel):
scene = context.scene
layout = self.layout
- row = layout.row()
+ layout.row() # XXX, is this needed?
col = layout.column()
col.prop(scene.lightfield, "row_length")