Fix T40246: Speaker Object is missing from Tabs > 'Create' tab in the Toolbar.

This commit is contained in:
Bastien Montagne 2014-05-18 09:55:47 +02:00
parent 48a735d824
commit 9127b8f2a3
Notes: blender-bot 2023-04-19 22:54:54 +02:00
Referenced by issue #40272, Error setting option flags2 to value fastpskip
Referenced by issue #40275, Frame Step slider not working.
Referenced by issue #40246, Speaker Object is missing from Tabs > 'Create' tab in the Toolbar
1 changed files with 1 additions and 0 deletions

View File

@ -186,6 +186,7 @@ class VIEW3D_PT_tools_add_object(View3DPanel, Panel):
layout.operator("object.armature_add", text="Armature", icon='OUTLINER_OB_ARMATURE')
layout.operator("object.add", text="Lattice", icon='OUTLINER_OB_LATTICE').type = 'LATTICE'
layout.operator("object.empty_add", text="Empty", icon='OUTLINER_OB_EMPTY').type = 'PLAIN_AXES'
layout.operator("object.speaker_add", text="Speaker", icon='OUTLINER_OB_SPEAKER')
layout.operator("object.camera_add", text="Camera", icon='OUTLINER_OB_CAMERA')
def draw(self, context):