* Minor tweaks after tomato merge, rest of Tomato UI code is excellent. :)
This commit is contained in:
Thomas Dinges 2011-11-07 14:34:56 +00:00
parent 2b6e4f2422
commit 5ebee683bd
2 changed files with 2 additions and 12 deletions

@ -761,8 +761,7 @@ class ConstraintButtonsPanel():
layout.prop(con, "track")
row = layout.row()
row.prop(con, "reference", expand=True)
layout.row().prop(con, "reference", expand=True)
layout.operator("clip.constraint_to_fcurve")

@ -42,6 +42,7 @@ class SCENE_PT_scene(SceneButtonsPanel, Panel):
layout.prop(scene, "camera")
layout.prop(scene, "background_set", text="Background")
layout.prop(scene, "active_clip", text="Active Clip")
class SCENE_PT_audio(SceneButtonsPanel, Panel):
@ -218,16 +219,6 @@ class SCENE_PT_simplify(SceneButtonsPanel, Panel):
col.prop(rd, "simplify_ao_sss", text="AO and SSS")
class SCENE_PT_movie_clip(SceneButtonsPanel, Panel):
bl_label = "Movie Clip"
def draw(self, context):
layout = self.layout
scene = context.scene
layout.prop(scene, "active_clip", text="Active Clip")
class SCENE_PT_custom_props(SceneButtonsPanel, PropertyPanel, Panel):
COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_GAME'}
_context_path = "scene"