[Bf-blender-cvs] [59940c3] alembic: Disable the UI for drawing objects of cache libraries.

Lukas Tönne noreply at git.blender.org
Fri Apr 10 09:17:51 CEST 2015


Commit: 59940c3b68525504fce408d3ae6fff33f25f821a
Author: Lukas Tönne
Date:   Thu Apr 9 21:10:00 2015 +0200
Branches: alembic
https://developer.blender.org/rB59940c3b68525504fce408d3ae6fff33f25f821a

Disable the UI for drawing objects of cache libraries.

This takes an arbitrarily large amount of space in the UI and does
currently not have a good purpose.

Eventually this information could be displayed in a dedicated part of
the UI, with proper scrolling.

===================================================================

M	release/scripts/startup/bl_ui/properties_object.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 03d9eab..06534b6 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -356,6 +356,7 @@ class OBJECT_PT_duplication(ObjectButtonsPanel, Panel):
         col.row().prop(cachelib, "eval_mode", toggle=True, expand=True)
         col.row().prop(cachelib, "data_types", icon_only=True, toggle=True)
 
+        '''
         row = layout.row(align=True)
         row.label("Filter:")
         row.prop(cachelib, "filter_string", icon='VIEWZOOM', text="")
@@ -373,6 +374,7 @@ class OBJECT_PT_duplication(ObjectButtonsPanel, Panel):
                 row = layout.row(align=True)
                 row.alignment = 'LEFT'
                 row.template_cache_library_item(cachelib, ob, datatype, index, enable)
+        '''
     
         layout.operator_menu_enum("cachelibrary.add_modifier", "type")




More information about the Bf-blender-cvs mailing list