[Bf-blender-cvs] [b1a77117189] master: UI: Remove redundant titles in animation filter popover

William Reynish noreply at git.blender.org
Tue May 7 18:09:17 CEST 2019


Commit: b1a77117189259cd75f99b91f88a64b810c9973a
Author: William Reynish
Date:   Tue May 7 18:09:15 2019 +0200
Branches: master
https://developer.blender.org/rBb1a77117189259cd75f99b91f88a64b810c9973a

UI: Remove redundant titles in animation filter popover

It's clear what these do without and takes up much less space

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_dopesheet.py b/release/scripts/startup/bl_ui/space_dopesheet.py
index db69a99b9df..af6a0c4c582 100644
--- a/release/scripts/startup/bl_ui/space_dopesheet.py
+++ b/release/scripts/startup/bl_ui/space_dopesheet.py
@@ -79,7 +79,6 @@ class DopesheetFilterPopoverBase:
         is_nla = context.area.type == 'NLA_EDITOR'
 
         col = layout.column(align=True)
-        col.label(text="With Name:")
         if not is_nla:
             row = col.row(align=True)
             row.prop(dopesheet, "filter_fcurve_name", text="")
@@ -89,7 +88,6 @@ class DopesheetFilterPopoverBase:
 
         if (not generic_filters_only) and (bpy.data.collections):
             col = layout.column(align=True)
-            col.label(text="In Collection:")
             col.prop(dopesheet, "filter_collection", text="")
 
     # Standard = Present in all panels



More information about the Bf-blender-cvs mailing list