Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/ui/buttons_data_empty.py')
-rw-r--r--release/scripts/ui/buttons_data_empty.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/release/scripts/ui/buttons_data_empty.py b/release/scripts/ui/buttons_data_empty.py
deleted file mode 100644
index eda6cced0ae..00000000000
--- a/release/scripts/ui/buttons_data_empty.py
+++ /dev/null
@@ -1,23 +0,0 @@
-
-import bpy
-
-class DataButtonsPanel(bpy.types.Panel):
- __space_type__ = 'PROPERTIES'
- __region_type__ = 'WINDOW'
- __context__ = "data"
-
- def poll(self, context):
- return (context.object and context.object.type == 'EMPTY')
-
-class DATA_PT_empty(DataButtonsPanel):
- __label__ = "Empty"
-
- def draw(self, context):
- layout = self.layout
-
- ob = context.object
-
- layout.itemR(ob, "empty_draw_type", text="Display")
- layout.itemR(ob, "empty_draw_size", text="Size")
-
-bpy.types.register(DATA_PT_empty)