Skip to content
Snippets Groups Projects
Commit 8e8163bc authored by Brendon Murphy's avatar Brendon Murphy
Browse files

fix for indent error

parent 2f1ac05c
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,8 @@ bl_info = { ...@@ -20,8 +20,8 @@ bl_info = {
'name': 'Drop to Ground', 'name': 'Drop to Ground',
'author': 'Unnikrishnan(kodemax), Florian Meyer(testscreenings)', 'author': 'Unnikrishnan(kodemax), Florian Meyer(testscreenings)',
'version': (1, 2), 'version': (1, 2),
"blender": (2, 63, 0), "blender": (2, 71, 0),
'location': '3D View > Tool Shelf > Object Tools Panel (at the bottom)', 'location': '3D View > Toolshelf > Addons Tab',
'description': 'Drop selected objects on active object', 'description': 'Drop selected objects on active object',
'warning': '', 'warning': '',
'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/' 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/'
...@@ -179,7 +179,7 @@ class drop_help(bpy.types.Operator): ...@@ -179,7 +179,7 @@ class drop_help(bpy.types.Operator):
layout.label("Select the object/s to drop") layout.label("Select the object/s to drop")
layout.label("Then Shift Select 'Ground'") layout.label("Then Shift Select 'Ground'")
def execute(self, context): def execute(self, context):
return {'FINISHED'} return {'FINISHED'}
def invoke(self, context, event): def invoke(self, context, event):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment