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:
authorCampbell Barton <ideasman42@gmail.com>2018-04-24 20:54:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-24 20:54:22 +0300
commit34d6b48c47aae25e26e7864ff66314b37669ebcc (patch)
tree28786418323eede96ffd734478f0fa58854f66c7 /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent5d3f1d1f78dd4a29fa241aa31804231ba3923849 (diff)
UI: remove relations panel
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index bda0d0a7446..3b15ab1986b 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -108,41 +108,6 @@ class VIEW3D_PT_tools_object(View3DPanel, Panel):
row.operator("object.datalayout_transfer", text="Data Layout")
-class VIEW3D_PT_tools_relations(View3DPanel, Panel):
- bl_category = "Relations"
- bl_context = "objectmode"
- bl_label = "Relations"
-
- def draw(self, context):
- layout = self.layout
-
- col = layout.column(align=True)
-
- col.label(text="Group:")
- col.operator("group.create", text="New Group")
- col.operator("group.objects_add_active", text="Add to Active")
- col.operator("group.objects_remove", text="Remove from Group")
-
- col.separator()
-
- col.label(text="Parent:")
- row = col.row(align=True)
- row.operator("object.parent_set", text="Set")
- row.operator("object.parent_clear", text="Clear")
-
- col.separator()
-
- col.label(text="Object Data:")
- col.operator("object.make_links_data")
- col.operator("object.make_single_user")
-
- col.separator()
-
- col.label(text="Linked Objects:")
- col.operator("object.make_local")
- col.operator("object.proxy_make")
-
-
class VIEW3D_PT_tools_animation(View3DPanel, Panel):
bl_category = "Animation"
bl_context = "objectmode"
@@ -1724,7 +1689,6 @@ class VIEW3D_PT_tools_history(View3DPanel, Panel):
classes = (
VIEW3D_PT_tools_object,
- VIEW3D_PT_tools_relations,
VIEW3D_PT_tools_animation,
VIEW3D_PT_tools_rigid_body,
VIEW3D_PT_tools_meshedit,