[Bf-blender-cvs] [df1d990b683] master: UI: Offset checkbox in the Outliner filter popover

William Reynish noreply at git.blender.org
Mon May 6 20:54:38 CEST 2019


Commit: df1d990b6831fbc0b84363947fe2ef6c7d21c457
Author: William Reynish
Date:   Mon May 6 20:54:35 2019 +0200
Branches: master
https://developer.blender.org/rBdf1d990b6831fbc0b84363947fe2ef6c7d21c457

UI: Offset checkbox in the Outliner filter popover

Aligned with the other checkboxes

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index 3718965657c..d64dfbfdfdf 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -366,7 +366,9 @@ class OUTLINER_PT_filter(Panel):
                 bpy.data.fonts or
                 bpy.data.speakers
         ):
-            sub.prop(space, "use_filter_object_others", text="Others")
+            row = sub.row()
+            row.label(icon='BLANK1')
+            row.prop(space, "use_filter_object_others", text="Others")
 
 
 classes = (



More information about the Bf-blender-cvs mailing list