Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-05-06 21:54:35 +0300
committerWilliam Reynish <billrey@me.com>2019-05-06 21:54:35 +0300
commitdf1d990b6831fbc0b84363947fe2ef6c7d21c457 (patch)
treee0d7ac4e1d468ed842c220429b1a9e10db61d61e /release
parent0f064144f3952bf9208f84d0587d4c65ac552641 (diff)
UI: Offset checkbox in the Outliner filter popover
Aligned with the other checkboxes
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py4
1 files changed, 3 insertions, 1 deletions
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 = (